Hi,
I'm migrating some projects from maven 1 to 2. We have a dependency
in our project.xml that looks like
<dependency>
<id>junit-addons</id>
<version>1.4</version>
<type>test</type>
</dependency>
so I add
<dependency>
<artifactId>junit-addons</artifactId>
<groupId>junit-addons</groupId>
<version>1.4</version>
<scope>test</scope>
</dependency>
to my pom.xml for maven 2. When I run mvn install with that pom, it
fails while attempting to download
http://repo1.maven.org/maven2/junit-addons/junit-addons-runner/1.0-alpha1/junit-addons-runner-1.0-alpha1.pom
This doesn't exist on ibiblio, so it makes sense that it fails. I
just don't understand why it's trying to download it. The
junit-addons 1.4 jar is there...
Thanks,
Charlie
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]