Stefano Fornari schrieb:
Hi All,
still struggling with JavaCC and Maven. I have the following pom:

<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>
   <artifactId>funambol-framework</artifactId>
   <groupId>com.funambol</groupId>
   <version>3.0-SNAPSHOT</version>
   <name>Funambol Framework</name>
   <dependencies>

[...]

   <build>
       <plugins>
           <plugin>
               <groupId>net.java.dev.javacc</groupId>
               <artifactId>javacc</artifactId>
               <version>4.0</version>
               <configuration>
               </configuration>
           </plugin>
       </plugins>
   </build>

</project>

Are your sure the plugin with the artifact id 'javacc' with the groupid 'net.java.dev' exists? I only know the javacc plugin from the mojo project over at codehaus.org.

The mojo homepage is currently down due to the codehaus outage but you can have a look at the apt sources of the javacc-plugin site here: http://svn.codehaus.org/mojo/trunk/mojo/javacc-maven-plugin/src/site/apt/index.apt. It's quite readable.

Or you can checkout the plugin sources via svn from here: http://svn.codehaus.org/mojo/trunk/mojo/javacc-maven-plugin/. and build the site locally with 'mvn site:site'.



[...]

Has anyone a clue?

Thanks in advance.

Stefano



Hope this help
-Tim

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

Reply via email to