I have tried everything. Can anyone look at my pom and tell me what the issue is here please????
===========================================================
<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>com.prounlimited</groupId>
   <version>${pw90.version}</version>

   <artifactId>prounlimited</artifactId>
   <packaging>pom</packaging>
   <name>PrO Unlimited PW-90 Project</name>
   <description>PrO Unlimited PW-90 Project</description>
   <inceptionYear>2003</inceptionYear>
   <organization>
       <name>Looksmart, Inc.</name>
       <url>http://www.prounlimited.net</url>
       <!--
       <logo>http://www.prounlimited.com/logo.jpg</logo>
       -->
   </organization>
   <licenses>
       <license>
           <name>Copyright PrO Unlimited</name>
           <url>LICENSE.txt</url>
           <comments>Comments about this license...</comments>
           <distribution>repo</distribution>
       </license>
   </licenses>
   <url>http://www.prounlimited.com</url>


   <scm>
<developerConnection>scm:svn:http://prodeng/svn/prounlimited/prounlimitedm2</developerConnection>
       <url>http://prodeng/svn/prounlimited/prounlimitedm2</url>
   </scm>

   <repositories>
       <!--
       - This is to manually install 3rd party jars
mvn install:install-file -Dfile=<path-to-file> -DgroupId=com.prounlimited \
       -DartifactId=common-jar -Dversion=1.0 -Dpackaging=jar

       <repository>
           <id>central</id>
           <name>Maven Repository Switchboard</name>
           <layout>default</layout>
           <url>C:\\Documents and Settings\\Owner\\.m2\\repository</url>

           <snapshots>
               <enabled>false</enabled>
           </snapshots>
       </repository>
       -->
       <repository>
           <id>backup</id>
           <name>Maven Repository Switchboard</name>
           <layout>default</layout>
           <url>http://repo1.maven.org/maven2</url>

           <snapshots>
               <enabled>true</enabled>
           </snapshots>
       </repository>
   </repositories>

   <pluginRepositories>
       <pluginRepository>
           <id>central</id>
           <name>Maven Plugin Repository</name>
           <layout>default</layout>
           <url>http://repo1.maven.org/maven2</url>

           <snapshots>
               <enabled>true</enabled>
           </snapshots>
           <releases>
               <updatePolicy>never</updatePolicy>
           </releases>
       </pluginRepository>
       <pluginRepository>
           <id>mojo_snapshot</id>
           <name>Maven Plugin Repository</name>
           <layout>default</layout>

           <url>http://snapshots.maven.codehaus.org/maven2</url>

           <snapshots>
               <enabled>true</enabled>
           </snapshots>
           <releases>
               <updatePolicy>never</updatePolicy>
           </releases>
       </pluginRepository>
   </pluginRepositories>

   <modules>
       <!--<module>pw90-ear</module>-->
       <module>common</module>
       <!--<module>core</module>-->
       <!--<module>pw90-web</module>-->
   </modules>

<!--========================================================================================================
   - BUILD
=========================================================================================================-->
   <build>

       <defaultGoal>package</defaultGoal>

       <pluginManagement>
           <plugins>


           </plugins>

       </pluginManagement>

       <plugins>


       </plugins>

       <resources>
           <resource>
               <directory>src/main/filters</directory>
               <filtering>true</filtering>
           </resource>
       </resources>

   </build>

<!--========================================================================================================
   - REPORTING
=========================================================================================================-->
   <reporting>
       <outputDirectory>${basedir}/target/site</outputDirectory>
       <plugins>

           <!--<plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-project-info-reports-plugin</artifactId>
           </plugin>-->


       </plugins>
   </reporting>

<!--========================================================================================================
   - DEPENDENCIES
=========================================================================================================-->

   <dependencyManagement>
       <dependencies>
<!-- Application artifact dependancies ==================================================================-->

           <dependency>
               <groupId>com.prounlimited.common</groupId>
               <artifactId>common-jar</artifactId>
               <version>${common.version}</version>
               <type>jar</type>
           </dependency>
           <!--<dependency>
               <groupId>com.prounlimited.common</groupId>
               <artifactId>common-managers</artifactId>
               <version>${common.version}</version>
               <type>jar</type>
           </dependency>
           <dependency>
               <groupId>com.prounlimited.common</groupId>
               <artifactId>common-war</artifactId>
               <version>${common.version}</version>
               <type>jar</type>
           </dependency>-->

           <!--<dependency>
               <groupId>com.prounlimited</groupId>
               <artifactId>core</artifactId>
               <version>${core.version}</version>
               <type>jar</type>
           </dependency>-->

           <!--<dependency>
               <groupId>com.prounlimited.prounlimited-web</groupId>
               <artifactId>pw90</artifactId>
               <version>${pw90.version}</version>
               <type>war</type>
           </dependency>-->

       </dependencies>
   </dependencyManagement>

<!--========================================================================================================
   - END DEPENDENCIES
=========================================================================================================-->

   <developers>
       <developer>
           <id>mknutson</id>
           <name>Mick Knutson</name>
           <url>http://www.baselogic.com/resume/index.html</url>
           <organization>BASE logic, Inc.</organization>
           <organizationUrl>http://www.prounlimited.net</organizationUrl>
           <roles>
               <role>Analyst</role>
               <role>Java Architect</role>
               <role>Java Designer</role>
               <role>Java Developer</role>
           </roles>
           <timezone>-8</timezone>
       </developer>
   </developers>


   <distributionManagement>
       <!--<site>
           <id>site</id>
           <name>project website</name>
           <url>scp://local.company.com/websites/project.company.com/</url>
       </site>-->
   </distributionManagement>

</project>















---
Thank You
Mick Knutson

BASE logic, inc.
(415) 648-1804 (San Francisco, CA)
http://www.BASELogic.com

http://www.djmick.com
---




From: "Mick Knutson" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" <users@maven.apache.org>
To: users@maven.apache.org
Subject: [m204] Error with compiler plugin with new project...
Date: Thu, 22 Jun 2006 14:18:56 -0700

Can someone help figure out why I am getting the following error with a new project of mine???




[INFO] [xdoclet:xdoclet {execution: default}]
[INFO] Initializing DocletTasks!!!
[INFO] Executing tasks
Jun 22, 2006 1:22:23 PM xdoclet.XDocletMain start
INFO: Running <hibernate/>
[INFO] Executed tasks
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
-----------------------------------------------------
this realm = app0.child-container[org.apache.maven.plugins:maven-compiler-plugin] urls[0] = file:/C:/Documents and Settings/mknutson/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/2.0.1/maven-
compiler-plugin-2.0.1.jar
Number of imports: 0


this realm = plexus.core.maven
urls[0] = file:/C:/maven-2.0.4/bin/../lib/commons-cli-1.0.jar
urls[1] = file:/C:/maven-2.0.4/bin/../lib/doxia-sink-api-1.0-alpha-7.jar
urls[2] = file:/C:/maven-2.0.4/bin/../lib/jsch-0.1.24.jar
urls[3] = file:/C:/maven-2.0.4/bin/../lib/maven-artifact-2.0.4.jar
urls[4] = file:/C:/maven-2.0.4/bin/../lib/maven-artifact-manager-2.0.4.jar
urls[5] = file:/C:/maven-2.0.4/bin/../lib/maven-core-2.0.4.jar
urls[6] = file:/C:/maven-2.0.4/bin/../lib/maven-error-diagnostics-2.0.4.jar
urls[7] = file:/C:/maven-2.0.4/bin/../lib/maven-model-2.0.4.jar
urls[8] = file:/C:/maven-2.0.4/bin/../lib/maven-monitor-2.0.4.jar
urls[9] = file:/C:/maven-2.0.4/bin/../lib/maven-plugin-api-2.0.4.jar
urls[10] = file:/C:/maven-2.0.4/bin/../lib/maven-plugin-descriptor-2.0.4.jar urls[11] = file:/C:/maven-2.0.4/bin/../lib/maven-plugin-parameter-documenter-2.0.4.jar
urls[12] = file:/C:/maven-2.0.4/bin/../lib/maven-plugin-registry-2.0.4.jar
urls[13] = file:/C:/maven-2.0.4/bin/../lib/maven-profile-2.0.4.jar
urls[14] = file:/C:/maven-2.0.4/bin/../lib/maven-project-2.0.4.jar
urls[15] = file:/C:/maven-2.0.4/bin/../lib/maven-reporting-api-2.0.4.jar
urls[16] = file:/C:/maven-2.0.4/bin/../lib/maven-repository-metadata-2.0.4.jar
urls[17] = file:/C:/maven-2.0.4/bin/../lib/maven-settings-2.0.4.jar
urls[18] = file:/C:/maven-2.0.4/bin/../lib/plexus-interactivity-api-1.0-alpha-4.jar
urls[19] = file:/C:/maven-2.0.4/bin/../lib/wagon-file-1.0-alpha-7.jar
urls[20] = file:/C:/maven-2.0.4/bin/../lib/wagon-http-lightweight-1.0-alpha-6.jar urls[21] = file:/C:/maven-2.0.4/bin/../lib/wagon-provider-api-1.0-alpha-6.jar
urls[22] = file:/C:/maven-2.0.4/bin/../lib/wagon-ssh-1.0-alpha-7.jar
urls[23] = file:/C:/maven-2.0.4/bin/../lib/wagon-ssh-external-1.0-alpha-6.jar
Number of imports: 0


this realm = plexus.core
urls[0] = file:/C:/maven-2.0.4/bin/../core/plexus-container-default-1.0-alpha-9.jar
urls[1] = file:/C:/maven-2.0.4/bin/../core/plexus-utils-1.1.jar
Number of imports: 0
-----------------------------------------------------
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------ [INFO] Internal error in the plugin manager executing goal 'org.apache.maven.plugins:maven-compiler-plugin:2.0.1:compile': Un able to find the mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.0.1:compile' in the plugin 'org.apache.maven.plugins:
maven-compiler-plugin'
org/codehaus/plexus/compiler/CompilerException
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8 seconds
[INFO] Finished at: Thu Jun 22 13:22:24 PDT 2006
[INFO] Final Memory: 6M/11M
[INFO] ------------------------------------------------------------------------




---
Thank You
Mick Knutson

BASE logic, inc.
(415) 648-1804 (San Francisco, CA)
http://www.BASELogic.com

http://www.djmick.com
---



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to