Last night I was looking at an irc user's pom for a parsing error:

<?xml version="1.0" encoding="UTF-8"?>
<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.lwjgl</groupId>
  <artifactId>lwjgl-linux-64</artifactId>
  <version>2.4.2</version>
  <repositories>
    <repository>
      <id>newdawnsoftware</id>
      <url>http://www.newdawnsoftware.com/maven2</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>net.java.games</groupId>
      <artifactId>jinput</artifactId>
      <version>2.0.1</version>
    </dependency>
    <dependency>
      <groupId>net.java.games</groupId>
      <artifactId>jinput</artifactId>
      <version>2.0.1</version>
      <classifier>linux-natives</classifier>
    </dependency>
  </dependencies>
</project>


I put this on my desktop and ran:

c:\Users\brianf\Desktop>mvn help:effective-pom

And it started downloading all updated versions of the
plugins...plugins that aren't being used in this execution and aren't
referenced in the pom directly. I've seen this happen before with a
few other projects and it seems odd to me, is this new behavior or is
my memory failing?

[INFO] Scanning for projects...
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-compiler-plugin/2.3/maven-compiler-plugin-2.3.jar
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-compiler-plugin/2.3/maven-compiler-plugin-2.3.jar (30 KB at 13
.8 KB/sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-resources-plugin/2.4.2/maven-resources-plugin-2.4.2.jar
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-resources-plugin/2.4.2/maven-resources-plugin-2.4.2.jar (24 KB
 at 119.7 KB/sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-surefire-plugin/2.5/maven-surefire-plugin-2.5.jar
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-surefire-plugin/2.5/maven-surefire-plugin-2.5.jar (33 KB at 24
.3 KB/sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-clean-plugin/2.4/maven-clean-plugin-2.4.jar
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-clean-plugin/2.4/maven-clean-plugin-2.4.jar (23 KB at 16.6 KB/
sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-release-plugin/2.0/maven-release-plugin-2.0.jar
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-release-plugin/2.0/maven-release-plugin-2.0.jar (38 KB at 27.7
 KB/sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/sonatype
/plugins/maven-metadata.xml
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/sonatype/
plugins/maven-metadata.xml (5 KB at 1.9 KB/sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-metadata.xml
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-metadata.xml (9 KB at 1.7 KB/sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-help-plugin/maven-metadata.xml
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-help-plugin/maven-metadata.xml (765 B at 0.1 KB/sec)
Downloading: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/m
aven/plugins/maven-help-plugin/2.1.1/maven-help-plugin-2.1.1.jar
Downloaded: http://192.168.101.21:8081/nexus/content/groups/public/org/apache/ma
ven/plugins/maven-help-plugin/2.1.1/maven-help-plugin-2.1.1.jar (60 KB at 40.0 K
B/sec)
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building lwjgl-linux-64 2.4.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-help-plugin:2.1.1:effective-pom (default-cli) @ lwjgl-linux-64
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org

Reply via email to