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>
link|improve this question

72% accept rate
This part of your pom looks like a part of an integration test and therefore it shouldn't be a part of the install cycle.. ? Can you explain that a little bit more to understand that?.. – khmarbaise Jan 22 at 17:49
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.