Maven – Archiva Installation
Archiva is a repository manager which is necessary for development in Maven for 2 purposes. 1. Add your own dependencies to the repository in Archiva in case if they are not found in the public Maven...
View ArticleMaven – Setup mirror to Archiva Repository Manager
So we know how to install the Archiva. Maven – Archiva Installation The next task is to configure the Maven such that it will download the dependencies through the Archiva. By default, Archiva has 2...
View ArticleMaven – Using AntInstaller in Maven
You have to specific the plugin dependency in the pom.xml if u want to use the installer task of AntInstaller in Maven. Unfortunately, the ant-installer.jar and ant-installer-ext.jar cannot be found in...
View ArticleMaven – Add New Remote Maven Repository in Archiva
It is possible to add other Maven repositories which is specified explicitly in the pom.xml using the <repositories> node. But if you have a Maven Repository Manager like Archiva, you should...
View ArticleMaven – Include system scope dependency in maven-assembly-plugin
If you don’t have Maven repository server like Archiva or Nexus, you may need to include those libs which are not public on the internet in your Maven project and specifiy the dependency scope as...
View Article