I am trying to build the porject using maven:build.
Its an Spring EJB project with name erpproxy.
I used Maven for building the project.
Iget this error
Error message: Failed to resolve plugin for mojo binding: org.codehaus.mojo:xdoclet-maven-plugin:1.0-alpha-3:xdoclet
Root error message: The PluginDescriptor for the plugin org.codehaus.mojo:xdoclet-maven-plugin was not found. Should have been in realm: ClassRealm[/plugins/org.codehaus.mojo:xdoclet-maven-plugin:1.0-alpha-3@48/thread:main, parent: null]
what does this mean? Am i missing a plugin.
I am also pastin my POM.xml file below for reference. Anyhelp is appreciated
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.atcc.erpproxy</groupId>
<artifactId>erpproxy</artifactId>
<packaging>ejb</packaging>
<version>1.2</version>
<parent>
<groupId>commonPoms</groupId>
<artifactId>default_1.5_ejb</artifactId>
<version>1.1</version>
</parent>
<name>ERP Proxy</name>
<url>http://thumper.atcc.org/projects/erpProxy</url>
<scm>
<connection>scm:cvs:pserver:cruisecontrol@congo:/usr/local/bif_repository:erpProxy</connection>
</scm>
<repositories>
<repository>
<id>local</id>
<name>local</name>
<url>http://mavenrepo.atcc.org/m2/repository</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>jboss</groupId>
<artifactId>j2ee</artifactId>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jbossall-client</artifactId>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>springframework</groupId>
<artifactId>spring</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>atcc-common</groupId>
<artifactId>atcc-common-utils</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>atcc-common</groupId>
<artifactId>atcc-common-security</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>atcc-common</groupId>
<artifactId>atcc-common-security</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/test/conf</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/conf</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/ErpProxyProgressDAOJunitTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>