You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2016/09/27 15:56:56 UTC

svn commit: r1762509 - in /sling/trunk/contrib: extensions/distribution/pom.xml pom.xml

Author: rombert
Date: Tue Sep 27 15:56:56 2016
New Revision: 1762509

URL: http://svn.apache.org/viewvc?rev=1762509&view=rev
Log:
SLING-6061 - Create per-module Jenkins jobs

Build the distribution module using a reactor, to make it simpler to
exclude it from the main Jenkins build.

Added:
    sling/trunk/contrib/extensions/distribution/pom.xml
Modified:
    sling/trunk/contrib/pom.xml

Added: sling/trunk/contrib/extensions/distribution/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/distribution/pom.xml?rev=1762509&view=auto
==============================================================================
--- sling/trunk/contrib/extensions/distribution/pom.xml (added)
+++ sling/trunk/contrib/extensions/distribution/pom.xml Tue Sep 27 15:56:56 2016
@@ -0,0 +1,36 @@
+<?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>
+
+    <groupId>org.apache.sling</groupId>
+    <artifactId>org.apache.sling.distribution.reactor</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>Apache Sling Distribution Reactor</name>
+
+    <modules>
+        <module>api</module>
+        <module>core</module>
+        <module>extensions</module>
+        <module>it</module>
+        <module>sample</module>
+    </modules>
+</project>

Modified: sling/trunk/contrib/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/pom.xml?rev=1762509&r1=1762508&r2=1762509&view=diff
==============================================================================
--- sling/trunk/contrib/pom.xml (original)
+++ sling/trunk/contrib/pom.xml Tue Sep 27 15:56:56 2016
@@ -107,11 +107,7 @@
           <module>extensions/leak-detector</module>
           <module>extensions/mongodb</module>
           <module>extensions/obr</module>
-          <module>extensions/distribution/api</module>
-          <module>extensions/distribution/core</module>
-          <module>extensions/distribution/extensions</module>
-          <module>extensions/distribution/sample</module>
-          <module>extensions/distribution/it</module>
+          <module>extensions/distribution</module>
           <module>extensions/logtail</module>
           <module>extensions/oak-s3</module>
           <module>extensions/reqanalyzer</module>