yuubouna wrote:
>
> I am setting up a multiple module using Maven 2.
> then when executing mvn:package -> to install the artifact (JAR File) in
> local Maven repo
> I recieved the following error in console:
>
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] The plugin 'org.apache.maven.plugins:maven-site-plugin' does not
> exist or
> no valid version could be found
>
> I checked out my local repo, org.apache.maven.plugins:maven-site-plugin is
> in there.
>
> anyone knows the solution to these?
>
> - yuubouna
>
>
------------------------------------------------------------------------------------------------------------
i also got
org.apache.maven.plugins:maven-war-plugin' does not exist error
solved this by adding the ff, snippet in parent pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</build>
do i relly need to add this code, I think, It can run successfully without
adding the ff plugin???
mmm..
yuubouna
--
View this message in context:
http://www.nabble.com/org.apache.maven.plugins%3Amaven-site-plugin%27-does-not-exist-tf3025435s177.html#a8405042
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]