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/11/28 17:11:39 UTC

svn commit: r1642316 - in /sling/trunk: pom.xml testing/pom.xml

Author: bdelacretaz
Date: Fri Nov 28 16:11:39 2014
New Revision: 1642316

URL: http://svn.apache.org/r1642316
Log:
SLING-4211 - testing/pom.xml added

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

Modified: sling/trunk/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/pom.xml?rev=1642316&r1=1642315&r2=1642316&view=diff
==============================================================================
--- sling/trunk/pom.xml (original)
+++ sling/trunk/pom.xml Fri Nov 28 16:11:39 2014
@@ -188,18 +188,7 @@
         <module>bundles/extensions/models/integration-tests</module>
 
         <!-- Testing Support -->
-        <module>testing/tools</module>
-        <module>testing/junit/core</module>
-        <module>testing/junit/scriptable</module>
-        <module>testing/junit/healthcheck</module>
-        <module>testing/junit/remote</module>
-        <module>testing/junit/performance</module>
-        <module>testing/mocks/resourceresolver-mock</module>
-        <module>testing/mocks/jcr-mock</module>
-        <module>testing/mocks/osgi-mock</module>
-        <module>testing/mocks/sling-mock</module>
-        <module>testing/mocks/sling-mock-jackrabbit</module>
-        <module>testing/sling-pax-util</module>
+        <module>testing</module>
         
         <!-- Installer -->
         <module>installer/core</module>
@@ -218,10 +207,6 @@
         <module>launchpad/content</module>
         <module>launchpad/builder</module>
         
-        <!-- Testing Samples -->
-        <module>testing/samples/sample-tests</module>
-        <module>testing/samples/failing-tests</module>
-        <module>testing/samples/integration-tests</module>
     </modules>
 
     <profiles>

Added: sling/trunk/testing/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/testing/pom.xml?rev=1642316&view=auto
==============================================================================
--- sling/trunk/testing/pom.xml (added)
+++ sling/trunk/testing/pom.xml Fri Nov 28 16:11:39 2014
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<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>8</version>
+  </parent>
+
+  <groupId>org.apache.sling</groupId>
+  <artifactId>org.apache.sling.testing.reactor</artifactId>
+  <packaging>pom</packaging>
+  <version>1-SNAPSHOT</version>
+
+  <name>Apache Sling Testing Modules Reactor</name>
+  <inceptionYear>2014</inceptionYear>
+
+  <scm>
+    <connection>
+            scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing
+        </connection>
+    <developerConnection>
+            scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing
+        </developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/trunk/testing</url>
+  </scm>
+
+  <modules>
+    <module>tools</module>
+    <module>junit/core</module>
+    <module>junit/scriptable</module>
+    <module>junit/healthcheck</module>
+    <module>junit/remote</module>
+    <module>junit/performance</module>
+    <module>mocks/resourceresolver-mock</module>
+    <module>mocks/jcr-mock</module>
+    <module>mocks/osgi-mock</module>
+    <module>mocks/sling-mock</module>
+    <module>mocks/sling-mock-jackrabbit</module>
+    <module>sling-pax-util</module>
+    <module>samples/sample-tests</module>
+    <module>samples/failing-tests</module>
+    <module>samples/integration-tests</module>
+  </modules>
+
+</project>