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 2015/10/19 12:54:58 UTC

svn commit: r1709387 - in /sling/trunk: pom.xml tooling/maven/archetypes/pom.xml tooling/maven/pom.xml

Author: rombert
Date: Mon Oct 19 10:54:58 2015
New Revision: 1709387

URL: http://svn.apache.org/viewvc?rev=1709387&view=rev
Log:
Move Maven tooling out of the main reactor

Added:
    sling/trunk/tooling/maven/archetypes/pom.xml
    sling/trunk/tooling/maven/pom.xml
Modified:
    sling/trunk/pom.xml

Modified: sling/trunk/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/pom.xml?rev=1709387&r1=1709386&r2=1709387&view=diff
==============================================================================
--- sling/trunk/pom.xml (original)
+++ sling/trunk/pom.xml Mon Oct 19 10:54:58 2015
@@ -86,22 +86,6 @@
         <!-- Tooling Support -->
         <module>tooling/support/install</module>
         <module>tooling/support/provisioning-model</module>
-        <!-- The Maven Plugins and Archeyptes-->
-        <module>tooling/maven/adapter-annotations</module>
-        <module>tooling/maven/maven-jcrocm-plugin</module>
-        <module>tooling/maven/maven-jspc-plugin</module>
-        <module>tooling/maven/maven-sling-plugin</module>
-        <module>tooling/maven/maven-launchpad-plugin</module>
-        <module>tooling/maven/slingstart-maven-plugin</module>
-        <module>tooling/maven/archetypes/parent</module>
-        <module>tooling/maven/archetypes/launchpad-standalone</module>
-        <module>tooling/maven/archetypes/launchpad-webapp</module>
-        <module>tooling/maven/archetypes/slingstart</module>
-        <module>tooling/maven/archetypes/initial-content</module>
-        <module>tooling/maven/archetypes/servlet</module>
-        <module>tooling/maven/archetypes/bundle</module>
-        <module>tooling/maven/archetypes/bundle-for-jcrinstall</module>
-        <module>tooling/maven/archetypes/taglib</module>
 
         <!-- The Sling API -->
         <module>bundles/api</module>
@@ -276,6 +260,14 @@
                 <module>performance</module>
             </modules>
         </profile>
+         <!-- Profile for including maven tooling -->
+        <profile>
+            <id>withMaven</id>
+            <modules>
+                <module>tooling/maven</module>
+            </modules>
+        </profile>
+
     </profiles>
 
 </project>

Added: sling/trunk/tooling/maven/archetypes/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/maven/archetypes/pom.xml?rev=1709387&view=auto
==============================================================================
--- sling/trunk/tooling/maven/archetypes/pom.xml (added)
+++ sling/trunk/tooling/maven/archetypes/pom.xml Mon Oct 19 10:54:58 2015
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  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</groupId>
+        <artifactId>apache</artifactId>
+        <version>8</version>
+        <relativePath />
+    </parent>
+
+    <groupId>org.apache.sling</groupId>
+    <artifactId>sling-maven-archetypes-builder</artifactId>
+    <packaging>pom</packaging>
+    <version>1-SNAPSHOT</version>
+
+    <name>Apache Maven Archetyes (Builder)</name>
+    <description>
+        Pseudo project to build all Maven archetypes.
+    </description>
+
+    <inceptionYear>2007</inceptionYear>
+
+    <prerequisites>
+        <maven>3.0.2</maven>
+    </prerequisites>
+
+
+    <issueManagement>
+        <system>Jira</system>
+        <url>http://issues.apache.org/jira/browse/SLING</url>
+    </issueManagement>
+
+
+    <scm>
+        <connection>
+            scm:svn:http://svn.apache.org/repos/asf/sling/trunk/tooling/maven/archetypes
+        </connection>
+        <developerConnection>
+            scm:svn:https://svn.apache.org/repos/asf/sling/trunk/tooling/maven/archetypes
+        </developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/trunk/tooling/maven/archetypes</url>
+    </scm>
+
+    <modules>
+        <module>parent</module>
+        <module>launchpad-standalone</module>
+        <module>launchpad-webapp</module>
+        <module>slingstart</module>
+        <module>initial-content</module>
+        <module>servlet</module>
+        <module>bundle</module>
+        <module>bundle-for-jcrinstall</module>
+        <module>taglib</module>
+    </modules>
+</project>

Added: sling/trunk/tooling/maven/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/maven/pom.xml?rev=1709387&view=auto
==============================================================================
--- sling/trunk/tooling/maven/pom.xml (added)
+++ sling/trunk/tooling/maven/pom.xml Mon Oct 19 10:54:58 2015
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  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</groupId>
+        <artifactId>apache</artifactId>
+        <version>8</version>
+        <relativePath />
+    </parent>
+
+    <groupId>org.apache.sling</groupId>
+    <artifactId>sling-maven-builder</artifactId>
+    <packaging>pom</packaging>
+    <version>1-SNAPSHOT</version>
+
+    <name>Apache Maven Tooling (Builder)</name>
+    <description>
+        Pseudo project to build all Maven modules.
+    </description>
+
+    <inceptionYear>2007</inceptionYear>
+
+    <prerequisites>
+        <maven>3.0.2</maven>
+    </prerequisites>
+
+
+    <issueManagement>
+        <system>Jira</system>
+        <url>http://issues.apache.org/jira/browse/SLING</url>
+    </issueManagement>
+
+
+    <scm>
+        <connection>
+            scm:svn:http://svn.apache.org/repos/asf/sling/trunk/tooling/maven
+        </connection>
+        <developerConnection>
+            scm:svn:https://svn.apache.org/repos/asf/sling/trunk/tooling/maven
+        </developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/trunk/tooling/maven</url>
+    </scm>
+
+    <modules>
+        <module>maven-jcrocm-plugin</module>
+        <module>maven-jspc-plugin</module>
+        <module>maven-sling-plugin</module>
+        <module>maven-launchpad-plugin</module>
+        <module>slingstart-maven-plugin</module>
+        <module>archetypes</module>
+    </modules>
+</project>