On 11/9/06, Antonio Petrelli <[EMAIL PROTECTED]> wrote:
[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.apache.maven.plugins
-DartifactId=maven-war-plugin \
-Dversion=2.0.2-SNAPSHOT -Dpackaging=maven-plugin
-Dfile=/path/to/file
org.apache.maven.plugins:maven-war-plugin:maven-plugin:2.0.2-SNAPSHOT
from the specified remote repositories:
central (http://repo1.maven.org/maven2)
It's not checking the snapshot repo. Try adding this either to the
parent pom or your settings.xml:
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>http://people.apache.org/repo/m2-snapshot-repository/</url>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
</pluginRepository>
</pluginRepositories>
--
Wendy
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]