You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2014/06/27 15:03:40 UTC

svn commit: r1606083 - in /sling/trunk: performance/pom.xml pom.xml

Author: bdelacretaz
Date: Fri Jun 27 13:03:39 2014
New Revision: 1606083

URL: http://svn.apache.org/r1606083
Log:
Add performance reactor pom, more convenient

Added:
    sling/trunk/performance/pom.xml
Modified:
    sling/trunk/pom.xml

Added: sling/trunk/performance/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/performance/pom.xml?rev=1606083&view=auto
==============================================================================
--- sling/trunk/performance/pom.xml (added)
+++ sling/trunk/performance/pom.xml Fri Jun 27 13:03:39 2014
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>19</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.apache.sling</groupId>
+    <artifactId>org.apache.sling.performance.reactor</artifactId>
+    <packaging>pom</packaging>
+    <version>0.9.9-SNAPSHOT</version>
+
+    <name>Apache Sling Performance Test Tools Reactor</name>
+    <description>Reactor for the Apache Sling Performance Test Tools</description>
+    <inceptionYear>2014</inceptionYear>
+    
+    <modules>
+        <module>base</module>
+        <module>jcr-resource-2.0.10</module>
+        <module>jcr-resource-2.1.0</module>
+        <module>jcr-resource-2.2.0</module>
+        <module>jcr-resource-2.2.10</module>
+        <module>tests</module>
+    </modules>
+</project>

Modified: sling/trunk/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/pom.xml?rev=1606083&r1=1606082&r2=1606083&view=diff
==============================================================================
--- sling/trunk/pom.xml (original)
+++ sling/trunk/pom.xml Fri Jun 27 13:03:39 2014
@@ -264,15 +264,11 @@
                 <module>contrib</module>
             </modules>
         </profile>
-         <!-- Profile for including performan tests -->
+         <!-- Profile for including performance tests -->
         <profile>
             <id>withPerformanceTest</id>
             <modules>
-                <module>performance/base</module>
-                <module>performance/jcr-resource-2.0.10</module>
-                <module>performance/jcr-resource-2.1.0</module>
-                <module>performance/jcr-resource-2.2.0</module>
-                <module>performance/tests</module>
+                <module>performance</module>
             </modules>
         </profile>
     </profiles>