You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ed...@apache.org on 2005/08/11 20:03:57 UTC

svn commit: r231494 - /incubator/jackrabbit/trunk/contrib/jcr-commands/project.xml

Author: edgarpoce
Date: Thu Aug 11 11:03:50 2005
New Revision: 231494

URL: http://svn.apache.org/viewcvs?rev=231494&view=rev
Log:
- added command line interface (o.a.j.chain.cli)
- removed jmeter dependencies
- added CLI i18n support 
- added info commands (ls, cat, etc.) (o.a.j.chain.info) 
- added literal and context attributes to commands
- added testing
- added javadocs

Modified:
    incubator/jackrabbit/trunk/contrib/jcr-commands/project.xml

Modified: incubator/jackrabbit/trunk/contrib/jcr-commands/project.xml
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/contrib/jcr-commands/project.xml?rev=231494&r1=231493&r2=231494&view=diff
==============================================================================
--- incubator/jackrabbit/trunk/contrib/jcr-commands/project.xml (original)
+++ incubator/jackrabbit/trunk/contrib/jcr-commands/project.xml Thu Aug 11 11:03:50 2005
@@ -76,6 +76,24 @@
       <type>jar</type>
     </dependency>
     <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+      <version>1.0</version>
+      <type>jar</type>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.7.0</version>
+      <type>jar</type>
+    </dependency>
+    <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>1.7</version>
+      <type>jar</type>
+    </dependency>
+    <dependency>
       <groupId>geronimo-spec</groupId>
       <artifactId>geronimo-spec-jta</artifactId>
       <version>1.0-M1</version>
@@ -102,13 +120,13 @@
     <dependency>
       <groupId>jackrabbit</groupId>
       <artifactId>jackrabbit-commons</artifactId>
-      <version>1.0-dev</version>
+      <version>1.0-SNAPSHOT</version>
       <type>jar</type>
     </dependency>
     <dependency>
       <groupId>jackrabbit</groupId>
       <artifactId>jackrabbit-core</artifactId>
-      <version>1.0-dev</version>
+      <version>1.0-SNAPSHOT</version>
       <type>jar</type>
     </dependency>
     <dependency>
@@ -118,20 +136,6 @@
       <type>jar</type>
       <url>http://www.day.com/maven/jsr170/jars/jcr-1.0.jar</url>
     </dependency>
-    <dependency>
-      <groupId>jmeter</groupId>
-      <artifactId>ApacheJMeter_core</artifactId>
-      <version>2.0.3</version>
-      <type>jar</type>
-      <url>http://jakarta.apache.org/jmeter/</url>
-    </dependency>
-    <dependency>
-      <groupId>jmeter</groupId>
-      <artifactId>ApacheJMeter_java</artifactId>
-      <version>2.0.3</version>
-      <type>jar</type>
-      <url>http://jakarta.apache.org/jmeter/</url>
-    </dependency>    
   </dependencies>
   <build>
     <sourceDirectory>src/java</sourceDirectory>
@@ -140,6 +144,29 @@
       <includes>
         <include>**/*Test.java</include>
       </includes>
+      <excludes>
+        <exclude>**/Abstract*.java</exclude>
+      </excludes>
+      <resources>
+        <resource>
+          <directory>src/test</directory>
+          <includes>
+            <include>**/*.xml</include>
+          </includes>
+          <filtering>false</filtering>
+        </resource>
+      </resources>
     </unitTest>
+    <resources>
+      <resource>
+        <directory>src/java</directory>
+        <includes>
+          <include>**/*.properties</include>
+          <include>**/*.dtd</include>
+          <include>**/*.xml</include>
+        </includes>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
   </build>
-</project>
+</project>
\ No newline at end of file