when performing maven install, i am seeing the following logs and end of install before build success message:
[INFO] [dependency:sources {execution: install}]
[INFO]
[INFO] The following files have been resolved:
[INFO] none
[INFO]
[INFO] The following files where skipped:
[INFO] antlr:antlr:java-source:sources:2.7.6
[INFO] aopalliance:aopalliance:java-source:sources:1.0
and i was wondering what is the importance of those logs and how to turn them off.
here's the plugin configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>install</id>
<phase>install</phase>
<goals>
<goal>sources</goal>
</goals>
</execution>
<!-- Copy the output war file to the target install directory hierarchy
for deployment -->
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>war</type>
<classifier></classifier>
<overWrite>true</overWrite>
<outputDirectory></outputDirectory>
<destFileName>../../../../installer/tomcat7/webapps/${project.artifactId}.war</destFileName>
</artifactItem>
</artifactItems>
<!-- other configurations here -->
</configuration>
</execution>
</executions>
</plugin>