You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/12/29 20:24:17 UTC

svn commit: r359878 - in /directory/trunk/ldap-common: ./ common/src/antlr/ pom.xml src/main/antlr/

Author: akarasulu
Date: Thu Dec 29 11:24:14 2005
New Revision: 359878

URL: http://svn.apache.org/viewcvs?rev=359878&view=rev
Log:
antlr:generate started to work but breaks due to inability to find token files

Added:
    directory/trunk/ldap-common/src/main/antlr/
      - copied from r359867, directory/trunk/ldap-common/common/src/antlr/
Removed:
    directory/trunk/ldap-common/common/src/antlr/
Modified:
    directory/trunk/ldap-common/   (props changed)
    directory/trunk/ldap-common/pom.xml

Propchange: directory/trunk/ldap-common/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Dec 29 11:24:14 2005
@@ -1,4 +1,5 @@
 *.ipr
+.deployables
 *.iws
 .wtpmodules
 .settings

Modified: directory/trunk/ldap-common/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunk/ldap-common/pom.xml?rev=359878&r1=359877&r2=359878&view=diff
==============================================================================
--- directory/trunk/ldap-common/pom.xml (original)
+++ directory/trunk/ldap-common/pom.xml Thu Dec 29 11:24:14 2005
@@ -117,6 +117,21 @@
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antlr-plugin</artifactId>
+        <configuration>
+          <grammars>valuelexer.g valueparser.g typelexer.g dnparser.g filter-value-lexer.g filter-lexer.g filter-lexer.g filter-value-parser.g filter-parser.g subtree-specification.g ACIItem.g</grammars>
+        </configuration>
+        <executions>
+           <execution>
+              <goals>
+                 <goal>generate</goal>
+              </goals>
+           </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <source>1.4</source>