Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Incomplete
-
2.0.9
-
None
-
None
-
None
-
Maven version: 2.0.9
Java version: 1.5.0_13
OS name: "mac os x" version: "10.5.4" arch: "i386" Family: "unix"
Description
As discussed on the user list, the relocation pom for the Jetty plugin does not seem to work correctly.
See: http://www.nabble.com/Does-relocation-work-for-plugins--td19618624.html
To reproduce, create a project from the webapp archetype, and introduce the Jetty plugin:
<build> ... <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>7.0.0pre3</version> </plugin> </plugins>
Attempting to build the project results in an error:
$ mvn install [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mywebapp Maven Webapp [INFO] task-segment: [install] [INFO] ------------------------------------------------------------------------ Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/7.0.0pre3/maven-jetty-plugin-7.0.0pre3.jar [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] A required plugin was not found: Plugin could not be found - check that the goal name is correct: Unable to download the artifact from any repository Try downloading the file manually from the project website. Then, install it using the command: mvn install:install-file -DgroupId=org.mortbay.jetty -DartifactId=maven-jetty-plugin -Dversion=7.0.0pre3 -Dpackaging=maven-plugin -Dfile=/path/to/file Alternatively, if you host your own repository you can deploy the file there: mvn deploy:deploy-file -DgroupId=org.mortbay.jetty -DartifactId=maven-jetty-plugin -Dversion=7.0.0pre3 -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] org.mortbay.jetty:maven-jetty-plugin:maven-plugin:7.0.0pre3 from the specified remote repositories: central (http://repo1.maven.org/maven2) org.mortbay.jetty:maven-jetty-plugin:maven-plugin:7.0.0pre3 from the specified remote repositories: central (http://repo1.maven.org/maven2) [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1 second [INFO] Finished at: Mon Sep 22 19:02:01 MST 2008 [INFO] Final Memory: 3M/7M [INFO] ------------------------------------------------------------------------