[jboss-cvs] JBossAS SVN: r91669 - in trunk: testsuite and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Jul 26 23:04:46 EDT 2009


Author: pgier
Date: 2009-07-26 23:04:46 -0400 (Sun, 26 Jul 2009)
New Revision: 91669

Modified:
   trunk/build/build.xml
   trunk/testsuite/build.xml
Log:
Use a property for the thirdparty dependencies pom file so that it can be overridden.

Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml	2009-07-27 03:00:55 UTC (rev 91668)
+++ trunk/build/build.xml	2009-07-27 03:04:46 UTC (rev 91669)
@@ -39,7 +39,7 @@
           description="Initialize thirdparty dependency configuration">
     
     <!-- Set a default file to use to define the thirdparty dependencies. -->
-    <property name="thirdparty.pom.file" value="../thirdparty/pom.xml"/>
+    <property name="thirdparty.pom.file" location="../thirdparty/pom.xml"/>
     
     <!-- 
       -  Initialize properties for each dependency in the thirdparty pom 

Modified: trunk/testsuite/build.xml
===================================================================
--- trunk/testsuite/build.xml	2009-07-27 03:00:55 UTC (rev 91668)
+++ trunk/testsuite/build.xml	2009-07-27 03:04:46 UTC (rev 91669)
@@ -481,6 +481,9 @@
     <!-- Init the maven ant tasks -->
     <!-- ================================================================== -->
 
+    <!-- Set a default file to use to define the thirdparty dependencies. -->
+    <property name="thirdparty.pom.file" location="../thirdparty/pom.xml"/>
+    
     <!-- 
       -  Initialize properties for each dependency in the thirdparty pom 
       -  The properties take the form "groupId:artifactId:packaging"
@@ -491,7 +494,7 @@
                         addArtifactFileSetRefs="true"
                         cacheDependencyRefs="true"
                         dependencyRefsBuildFile="output/build-dependencies.xml">
-      <pom file="../thirdparty/pom.xml"/>
+      <pom file="${thirdparty.pom.file}"/>
     </maven:dependencies>
 
     <mapper id="remove-versions" classpathref="maven-ant-tasks.classpath"




More information about the jboss-cvs-commits mailing list