Hello,

I'm using the RPM plugin, and at one point it tries to access a repository at java.net. The path is http://download.java.net/maven/2/org/codehaus/mojo/mojo-parent/18/mojo-parent-18.pom This path doesn't exist, and an exception occurs. After tracing how this happens, I found out that the problem is in

<dependency>
 <groupId>org.codehaus.mojo.unix</groupId>
 <artifactId>unix-rpm</artifactId>
 <version>1.0-alpha-1</version>
</dependency>

If you look at the pom file of this project at http://repo1.maven.org/maven2/org/codehaus/mojo/unix/unix/1.0-alpha-1/unix-1.0-alpha-1.pom then you'll see it has its repository set as java.net:

<repository>
 <id>java.net</id>
 <url>http://download.java.net/maven/2</url>
</repository>

I'm guessing this is some leftover from a previous build, because the file on java.net doesn't exist anymore.

The problem for me is that Maven tries to access java.net, and that site is blocked by our firewall. Because of this, the whole Maven build blocks, because of some thing that doesn't even exist anymore.

So could someone please fix this pom file and remove that repository entry? Or is there a way for me to do it (someone give me commit privileges...)?

Thanks, Csaba




---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to