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?
feedback
|
|
I guess you're using 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). | |||||
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. | |||
|
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. | |||
|
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. | |||
|
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? | |||
|
feedback
|