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 2004/11/24 06:54:46 UTC

svn commit: r106384 - /incubator/directory/ldap/trunk/common/maven.xml /incubator/directory/ldap/trunk/common/project.properties /incubator/directory/ldap/trunk/snacc-provider/project.properties

Author: akarasulu
Date: Tue Nov 23 21:54:45 2004
New Revision: 106384

Modified:
   incubator/directory/ldap/trunk/common/maven.xml
   incubator/directory/ldap/trunk/common/project.properties
   incubator/directory/ldap/trunk/snacc-provider/project.properties
Log:
Trying to do the same thing Brett did to fix antlr parser generation but we
seem to be running into another nasty problem here which is somewhat unrelated
peratining to vocabulary file imports. 


Modified: incubator/directory/ldap/trunk/common/maven.xml
Url: http://svn.apache.org/viewcvs/incubator/directory/ldap/trunk/common/maven.xml?view=diff&rev=106384&p1=incubator/directory/ldap/trunk/common/maven.xml&r1=106383&p2=incubator/directory/ldap/trunk/common/maven.xml&r2=106384
==============================================================================
--- incubator/directory/ldap/trunk/common/maven.xml	(original)
+++ incubator/directory/ldap/trunk/common/maven.xml	Tue Nov 23 21:54:45 2004
@@ -28,7 +28,7 @@
 		<!-- Produces 
 		target/antlr/org/apache/common/name/antlrValueTokenTypes.txt 
 		-->
-		<copy file="src/antlr/DnCommonTokenTypes.txt" toDir="."/>
+		<copy file="${basedir}/src/antlr/DnCommonTokenTypes.txt" toDir="."/>
 		<j:set var="maven.antlr.grammars" value="valuelexer.g"/>
 		<attainGoal name="antlr:generate" />
 		
@@ -59,40 +59,40 @@
     
   <preGoal name="jar:jar">
     <copy
-      file="src/antlr/DnCommonTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/name"
+      file="${basedir}/src/antlr/DnCommonTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/name"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/name/antlrNameParserTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/name"
+      file="${basedir}/target/antlr/org/apache/ldap/common/name/antlrNameParserTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/name"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/name/antlrTypeTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/name"
+      file="${basedir}/target/antlr/org/apache/ldap/common/name/antlrTypeTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/name"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/name/antlrValueParserTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/name"
+      file="${basedir}/target/antlr/org/apache/ldap/common/name/antlrValueParserTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/name"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/name/antlrValueTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/name"
+      file="${basedir}/target/antlr/org/apache/ldap/common/name/antlrValueTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/name"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/filter/AntlrFilterValueParserTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/filter"
+      file="${basedir}/target/antlr/org/apache/ldap/common/filter/AntlrFilterValueParserTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/filter"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/filter/FilterValueLexerTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/filter"
+      file="${basedir}/target/antlr/org/apache/ldap/common/filter/FilterValueLexerTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/filter"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/filter/AntlrFilterParserTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/filter"
+      file="${basedir}/target/antlr/org/apache/ldap/common/filter/AntlrFilterParserTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/filter"
       />
     <copy
-      file="target/antlr/org/apache/ldap/common/filter/FilterLexerTokenTypes.txt"
-      toDir="target/classes/org/apache/ldap/common/filter"
+      file="${basedir}/target/antlr/org/apache/ldap/common/filter/FilterLexerTokenTypes.txt"
+      toDir="${basedir}/target/classes/org/apache/ldap/common/filter"
       />
   </preGoal>
     

Modified: incubator/directory/ldap/trunk/common/project.properties
Url: http://svn.apache.org/viewcvs/incubator/directory/ldap/trunk/common/project.properties?view=diff&rev=106384&p1=incubator/directory/ldap/trunk/common/project.properties&r1=106383&p2=incubator/directory/ldap/trunk/common/project.properties&r2=106384
==============================================================================
--- incubator/directory/ldap/trunk/common/project.properties	(original)
+++ incubator/directory/ldap/trunk/common/project.properties	Tue Nov 23 21:54:45 2004
@@ -15,7 +15,7 @@
 
 # antlr configuration
 maven.antlr.grammars=
-maven.antlr.src.dir=src/antlr
+maven.antlr.src.dir=${basedir}/src/antlr
 
 #
 # remote repository properties

Modified: incubator/directory/ldap/trunk/snacc-provider/project.properties
Url: http://svn.apache.org/viewcvs/incubator/directory/ldap/trunk/snacc-provider/project.properties?view=diff&rev=106384&p1=incubator/directory/ldap/trunk/snacc-provider/project.properties&r1=106383&p2=incubator/directory/ldap/trunk/snacc-provider/project.properties&r2=106384
==============================================================================
--- incubator/directory/ldap/trunk/snacc-provider/project.properties	(original)
+++ incubator/directory/ldap/trunk/snacc-provider/project.properties	Tue Nov 23 21:54:45 2004
@@ -12,4 +12,4 @@
 #site.path=<directoryname>/ The default is blank.  Override this property
 #in the build.properties.  Remember to include the final forward slash.
 module.name=ldap-snacc-provider
-maven.repo.remote=http://www.ibiblio.org/maven/, http://ldapd.sourceforge.net/maven/repository/
+maven.repo.remote=http://cvs.apache.org/repository, http://www.ibiblio.org/maven/, http://ldapd.sourceforge.net/maven/repository/