You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@excalibur.apache.org by le...@apache.org on 2005/03/08 15:49:36 UTC

svn commit: r156532 - excalibur/trunk/framework/impl/project.xml

Author: leif
Date: Tue Mar  8 06:49:34 2005
New Revision: 156532

URL: http://svn.apache.org/viewcvs?view=rev&rev=156532
Log:
Make it possible for build tools to tell whether dependencies are required or not.

Modified:
    excalibur/trunk/framework/impl/project.xml

Modified: excalibur/trunk/framework/impl/project.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/framework/impl/project.xml?view=diff&r1=156531&r2=156532
==============================================================================
--- excalibur/trunk/framework/impl/project.xml (original)
+++ excalibur/trunk/framework/impl/project.xml Tue Mar  8 06:49:34 2005
@@ -33,24 +33,39 @@
         <dependency>
             <id>xml-apis</id>
             <version>2.0.2</version>
+            <properties note="Only required if not provided by JVM.">
+                <optional>true</optional>
+            </properties>
         </dependency>
         <dependency>
             <groupId>xml-apis</groupId>
             <artifactId>xmlParserAPIs</artifactId>
             <version>2.0.2</version>
+            <properties note="Only required if not provided by JVM.">
+                <optional>true</optional>
+            </properties>
         </dependency>
         <dependency>
             <id>xerces</id>
             <version>2.4.0</version>
+            <properties note="Only required if not provided by JVM.">
+                <optional>true</optional>
+            </properties>
         </dependency>
         <dependency>
             <id>xalan</id>
             <version>2.5.1</version>
+            <properties note="Only required if not provided by JVM.">
+                <optional>true</optional>
+            </properties>
         </dependency>
         
         <dependency>
             <id>log4j</id>
             <version>1.2.7</version>
+            <properties note="Only required if log4j features are used.">
+                <optional>true</optional>
+            </properties>
         </dependency>
         <dependency>
             <groupId>avalon-logkit</groupId>
@@ -60,6 +75,9 @@
         <dependency>
             <id>junit</id>
             <version>3.8.1</version>
+            <properties note="Only required by tests.">
+                <build>true</build>
+            </properties>
         </dependency>
     </dependencies>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: scm-unsubscribe@excalibur.apache.org
For additional commands, e-mail: scm-help@excalibur.apache.org