You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by th...@apache.org on 2010/05/17 17:37:28 UTC

svn commit: r945214 - /jackrabbit/sandbox/jackrabbit-j3/pom.xml

Author: thomasm
Date: Mon May 17 15:37:28 2010
New Revision: 945214

URL: http://svn.apache.org/viewvc?rev=945214&view=rev
Log:
Make it compile

Modified:
    jackrabbit/sandbox/jackrabbit-j3/pom.xml

Modified: jackrabbit/sandbox/jackrabbit-j3/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jackrabbit-j3/pom.xml?rev=945214&r1=945213&r2=945214&view=diff
==============================================================================
--- jackrabbit/sandbox/jackrabbit-j3/pom.xml (original)
+++ jackrabbit/sandbox/jackrabbit-j3/pom.xml Mon May 17 15:37:28 2010
@@ -32,12 +32,26 @@
     <description>Jackrabbit J3</description>
 
     <dependencies>
+    
+        <!-- Runtime -->
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>1.4</version>
+        </dependency>
         <dependency>
             <groupId>javax.jcr</groupId>
             <artifactId>jcr</artifactId>
             <version>2.0</version>
         </dependency>
         <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>1.5.8</version>
+        </dependency>
+        
+        <!-- Test -->
+        <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <version>3.8.1</version>
@@ -50,17 +64,6 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>commons-io</groupId>
-            <artifactId>commons-io</artifactId>
-            <version>1.4</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-            <version>1.5.8</version>
-        </dependency>
-        <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
             <version>1.5.8</version>
@@ -72,8 +75,9 @@
             <version>1.0.1</version>
             <scope>test</scope>
         </dependency>
+        
     </dependencies>
-
+    
     <build>
         <plugins>
             <plugin>
@@ -83,7 +87,34 @@
                     <source>1.5</source>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*TestAll.java</include>
+                    </includes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
+    
+    <profiles>
+        <profile>
+            <id>integrationTesting</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <systemPropertyVariables>
+                                <test.scale>2</test.scale>
+                            </systemPropertyVariables>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
  
 </project>