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 2017/11/07 09:13:16 UTC

[sling-archetype-parent] 10/10: [maven-release-plugin] copy for tag sling-archetype-parent-2

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to annotated tag sling-archetype-parent-2
in repository https://gitbox.apache.org/repos/asf/sling-archetype-parent.git

commit d18f04713a1cc94e331e28b1caddd96d79429dec
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Oct 16 15:06:23 2015 +0000

    [maven-release-plugin] copy for tag sling-archetype-parent-2
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/tags/sling-archetype-parent-2@1709029 13f79535-47bb-0310-9956-ffa450edef68
---
 parent/pom.xml | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 106 insertions(+)

diff --git a/parent/pom.xml b/parent/pom.xml
new file mode 100644
index 0000000..a10a701
--- /dev/null
+++ b/parent/pom.xml
@@ -0,0 +1,106 @@
+<?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>25</version>
+        <relativePath />
+    </parent>
+
+    <groupId>org.apache.sling</groupId>
+    <artifactId>sling-archetype-parent</artifactId>
+    <packaging>pom</packaging>
+    <version>2</version>
+
+    <name>Apache Sling Archetype Parent</name>
+    <description>The parent project for Apache Sling archetypes.</description>
+
+    <properties>
+        <!-- plugin versions to use in generated archetypes -->
+        <scrplugin.version>1.21.0</scrplugin.version>
+        <bundleplugin.version>3.0.0</bundleplugin.version>
+        <compilerplugin.version>3.3</compilerplugin.version>
+        <slingplugin.version>2.1.2</slingplugin.version>
+        <launchpadplugin.version>2.3.2</launchpadplugin.version>
+        <jarplugin.version>2.6</jarplugin.version>
+        <warplugin.version>2.6</warplugin.version>
+        <jettyplugin.version>6.1.23</jettyplugin.version>
+        
+        <!-- various properties which influence generated archetypes -->
+        <archetype.java.version>7</archetype.java.version>
+        
+        <!-- dependency versions to use in generated archetypes -->
+        <junit.version>4.12</junit.version>
+        <scrannotations.version>1.9.12</scrannotations.version>
+        <slingapi.version>2.9.0</slingapi.version>
+        <slf4japi.version>1.7.6</slf4japi.version>
+        
+        <!-- define archetype tooling version in a central place -->
+        <archetype.version>2.2</archetype.version>
+        
+    </properties>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/sling-archetype-parent-2</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/sling-archetype-parent-2</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/sling-archetype-parent-2</url>
+    </scm>
+    
+    <build>
+        <resources>
+            <resource>
+                <!-- filter pom.xml -->
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>    
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-resources-plugin</artifactId>
+                    <!-- 
+                        allow defining un-filtered resources in the pom.xml
+                        For example, the artifactId should not be escaped:
+                        
+                        <artifact>\${artifactId}</artifactId>
+                     -->
+                    <configuration>
+                        <escapeString>\</escapeString>
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <artifactId>maven-archetype-plugin</artifactId>
+                    <version>${archetype.version}</version>
+                    <extensions>true</extensions>
+                    <!-- Verify archetype invocation was successful as part of the verify phase -->
+                    <configuration>
+                        <postBuildHookScript>verify.groovy</postBuildHookScript>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+</project>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.