We cannot deploy our app as Maven is trying to update glassfish plugin from maven.ocean.net.au repository, although no such repository was defined in our pom. The problem is maven.ocean.net.au isn't online and therefor our build fails. Has this happened to anybody else?

link|improve this question

80% accept rate
just saw that glassfish plugin has a dependency from maven.ocean.net.au – cbaby Oct 21 '10 at 15:03
feedback

5 Answers

up vote 1 down vote accepted

I guess you're using org.glassfish.maven.plugin:maven-glassfish-plugin:2.2-SNAPSHOT which declares indeed http://maven.ocean.net.au/snapshot as snapshot repository.

My suggestion would be to use a released version of the plugin e.g. version 2.1 (released versions of this plugin are hosted in the java.net Maven2 Repository) or to patch and deploy a version 2.2 to your internal corporate repository (i.e. don't use a snapshot from the Ocean Maven2 Snapshot Repository).

link|improve this answer
4  
I'm using 2.1 (not a snapshot) and also have the problem. It's frustrating, because I already have the artifact; maven is just hanging while attempting to (needlessly) update it. – Caffeine Coma Jun 15 '11 at 17:53
feedback

The dependency resolution will only fail if no other repository being used has the version of the glassfish plugin you are attempting to use.

Make sure your maven setup has several other plugin repositories (best is a local repository which proxies requests to remote servers, to build up a huge local cache of Maven artifacts) so that resolution won't fail when a single repo can't be reached.

link|improve this answer
feedback

I have the same problem. The only solution I have found at this time is to delete all repositories (or switch them to enabled=false) from all the dependencies (3).

They should put all these repositories into a profile, this is terrible solution. It would be even alright if there was any response from the server, but it simply hangs. Timeout settings are also ignored.

link|improve this answer
feedback

I resolved this in eclipse by right clicking on the POM and creating a new run configuration in offline mode. Apparently, the saved maven builds ignore the global settings and use their own configuration. Of course if you actually need other updates, you'll be in for a nice long wait, but this has helped me.

link|improve this answer
feedback

I have the same problem. However, using the java.net Maven2 Repository cannot solve it, since this is the place where the reference to ocean.net.au repository comes from: http://download.java.net/maven/2/org/glassfish/maven/plugin/maven-glassfish-plugin/2.1/maven-glassfish-plugin-2.1.pom Maybe they should change their .pom?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.