Added: release/sling/org.apache.sling.servlets.post-2.3.2.pom
==============================================================================
--- release/sling/org.apache.sling.servlets.post-2.3.2.pom (added)
+++ release/sling/org.apache.sling.servlets.post-2.3.2.pom Fri Jul 19 06:45:30
2013
@@ -0,0 +1,172 @@
+<?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>16</version>
+ <relativePath>../../../parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>org.apache.sling.servlets.post</artifactId>
+ <packaging>bundle</packaging>
+ <version>2.3.2</version>
+
+ <name>Apache Sling Default POST Servlets</name>
+ <description>
+ Provides default POST servlets.
+ </description>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.servlets.post-2.3.2</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.servlets.post-2.3.2</developerConnection>
+
<url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.servlets.post-2.3.2</url>
+ </scm>
+
+ <properties>
+ <site.jira.version.id>12314180</site.jira.version.id>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-scr-plugin</artifactId>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Export-Package>
+ org.apache.sling.servlets.post;version=2.2.0
+ </Export-Package>
+ <Private-Package>
+ org.apache.sling.servlets.post.impl.*
+ </Private-Package>
+ <Sling-Bundle-Resources>
+ /system/sling.js
+ </Sling-Bundle-Resources>
+ <Embed-Dependency>
+
jackrabbit-jcr-commons;inline=org/apache/jackrabbit/util/ISO8601.class|org/apache/jackrabbit/util/Text.class
+ </Embed-Dependency>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <!-- No javadocs -->
+ <excludePackageNames>
+ org.apache.sling.servlets.post.impl
+ </excludePackageNames>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.jcr</groupId>
+ <artifactId>jcr</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.api</artifactId>
+ <version>2.3.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.jcr.api</artifactId>
+ <version>2.0.6</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.jcr.resource</artifactId>
+ <version>2.0.6</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.commons.json</artifactId>
+ <version>2.0.2-incubator</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.jcr.contentloader</artifactId>
+ <version>2.1.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.jackrabbit</groupId>
+ <artifactId>jackrabbit-jcr-commons</artifactId>
+ <version>1.6.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.commons.testing</artifactId>
+ <version>2.0.10</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit-addons</groupId>
+ <artifactId>junit-addons</artifactId>
+ <version>1.4</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
+
Propchange: release/sling/org.apache.sling.servlets.post-2.3.2.pom
------------------------------------------------------------------------------
svn:eol-style = native
Added: release/sling/org.apache.sling.servlets.post-2.3.2.pom.asc
==============================================================================
--- release/sling/org.apache.sling.servlets.post-2.3.2.pom.asc (added)
+++ release/sling/org.apache.sling.servlets.post-2.3.2.pom.asc Fri Jul 19
06:45:30 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJR3Aq4AAoJED/PUp/y8noGsO4P/2AAmVpTQ0kPUUBHRcbNg6WA
+ny6S3ThJkFExlxlJEBkAR00qtFZ7ymuSWyW/B3gAufswE9mWlHt1OZss76UPFsRp
+8cBPpHyUf+NiU4lGRRPcvdb+OkU7G+Hxdv1YI+mYnejBlnbgqRUvtDMXmUsGo9qr
++QVXxo5yLJGobr0qMCVEgwuUXaS32jSsIwPSXoXW36D/UVNyKEeVpXtBbfMtz+U8
+nVY58a3PfOcQtdXH/rCFNHIG84JCZPFUiZ+jmR5jINVyQ08KrXFIb+7xI+4Gf27c
+CRzBROYGQ75lFM1gvZWeRA4uw4OxQWpiwMpnz4iwPkTLYLkPPlcqJwjPPdv9wQaA
+zGxYJ+GjDXLR0lqSviMEka7pKN/BcazBMkpKcpO6UvMyB1XENEt0Hk1Bzf3aUX9/
+kzCvv5znqbB27XjQiAK8J71md+sOn9tgh1wY6h8Gmv9Hr2/2vSmmcq4UdsHN1Rkg
+u1moPQk5qE1NY/i75Dt27MU/3D8S5l7ffGKKl/x03QMuGHccfenZja2ccNJOqnmN
+mepGqFoe2/T1hAfgwD5yR4uFZBzkWaH3VvPrTn9yMs3f78t2LQ7ZuO/NL0HSD7yQ
+UXCP6GkLWwxAY4dcMH/B2Poer3FbMCC/xJ3R066gms5NPHG17ftaHNbOCA5SL1VE
+qgPzCusAetjzqMi1rC/b
+=WDre
+-----END PGP SIGNATURE-----
Added: release/sling/org.apache.sling.servlets.post-2.3.2.pom.md5
==============================================================================
--- release/sling/org.apache.sling.servlets.post-2.3.2.pom.md5 (added)
+++ release/sling/org.apache.sling.servlets.post-2.3.2.pom.md5 Fri Jul 19
06:45:30 2013
@@ -0,0 +1 @@
+d5143734be070911ad4c1c35976e052e
\ No newline at end of file
Added: release/sling/org.apache.sling.servlets.post-2.3.2.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.servlets.post-2.3.2.pom.sha1 (added)
+++ release/sling/org.apache.sling.servlets.post-2.3.2.pom.sha1 Fri Jul 19
06:45:30 2013
@@ -0,0 +1 @@
+94ffd3d6a5f5a117afa2da639a6bb3db4e6c0a5b
\ No newline at end of file
Added: release/sling/sling-17-source-release.zip
==============================================================================
Binary file - no diff available.
Propchange: release/sling/sling-17-source-release.zip
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: release/sling/sling-17-source-release.zip.asc
==============================================================================
--- release/sling/sling-17-source-release.zip.asc (added)
+++ release/sling/sling-17-source-release.zip.asc Fri Jul 19 06:45:30 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJR3AmjAAoJED/PUp/y8noGnogP/3UksqlA0k3bQ1gGSIwkjMN2
+BXRyUV3cPC1kLVTqrkp9pFXXOqoySQ3exQSBqX9EdTDq01fK1A/EOypiyQqYIs2l
+H4m2S3QTrrrilq/++YXRZwCYYLREfJbUV0mSCr9clL+/j+XiHbIP80R5WB/Ow3Tf
+sqgDDGoiFW+yRHlb1wam4uFeiwObIsLKEHDDJ8ISZo1nfPysVB7mKy5t/a8H9YxK
+hyBsbi8NgBlx9E2uuRg87zEnkMc0gvTx05Z8WQsddTRWKnAadKSVLniROGr7037q
+LngobXQXVR9bPiuEN3qQE4p8Lkhw/2+6Fbs4XkK3kUoaTh1BykLlkxnLPJLVFy3u
+M0xB5bYA6fwnlvyxymS5h3Wc4njvXso3ONrXRyU9pCwQe4YWHAP81ji6nOQKUUDP
+15JNBedrAnh/c53iFpEavrYRIY6/dd3go9aoS5a1KEaKRhOkj7F2Xy99Y4TCn9cP
+raozfc2MK2SSte5w2M7Nhq3kFE39Ck6TK5Z8QPR3SNRuvCdOIkB+wvsdKeZATlAW
+h4dTBl/sn3CTay0SorEVOd3tYjzIGwJS7tN/xsTTLOWBFfULzh0nZvRaqWD2SgNA
+jtcCnVL0Lh1/ytssKOGSotnABPGRaibYvsqmOajuBK03POfW+aGBBMOffgE9+Bto
+i0gnDVkD7CTIIvwogP5R
+=GY2x
+-----END PGP SIGNATURE-----
Added: release/sling/sling-17-source-release.zip.md5
==============================================================================
--- release/sling/sling-17-source-release.zip.md5 (added)
+++ release/sling/sling-17-source-release.zip.md5 Fri Jul 19 06:45:30 2013
@@ -0,0 +1 @@
+e2ecbe491dbffb9e20f020991960b90a
\ No newline at end of file
Added: release/sling/sling-17-source-release.zip.sha1
==============================================================================
--- release/sling/sling-17-source-release.zip.sha1 (added)
+++ release/sling/sling-17-source-release.zip.sha1 Fri Jul 19 06:45:30 2013
@@ -0,0 +1 @@
+1ae5f367fe26be25bdc03cb3e7f8a4e23551806d
\ No newline at end of file
Added: release/sling/sling-17.pom
==============================================================================
--- release/sling/sling-17.pom (added)
+++ release/sling/sling-17.pom Fri Jul 19 06:45:30 2013
@@ -0,0 +1,990 @@
+<?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</groupId>
+ <artifactId>apache</artifactId>
+ <version>13</version>
+ <relativePath />
+ </parent>
+
+ <groupId>org.apache.sling</groupId>
+ <artifactId>sling</artifactId>
+ <packaging>pom</packaging>
+ <version>17</version>
+
+ <name>Apache Sling (Parent)</name>
+ <description>The parent project for Apache Sling</description>
+ <inceptionYear>2007</inceptionYear>
+
+ <url>http://sling.apache.org</url>
+
+ <prerequisites>
+ <maven>3.0.4</maven>
+ </prerequisites>
+
+
+ <issueManagement>
+ <system>Jira</system>
+ <url>http://issues.apache.org/jira/browse/SLING</url>
+ </issueManagement>
+
+
+ <properties>
+ <site.jira.version.id>12313945</site.jira.version.id>
+ <site.javadoc.exclude />
+
<organization.logo>http://sling.apache.org/site/media.data/logo.png</organization.logo>
+ <!--
+ Java API and class file compliance. This property supports
+ one of two values:
+ - 5: Java 1.5 (default)
+ - 6: Java 6
+ Using anything else causes the
set-bundle-required-execution-environment
+ to fail the build with an exception
+ -->
+ <sling.java.version>5</sling.java.version>
+ </properties>
+
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/sling-17</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/sling-17</developerConnection>
+ <url>http://svn.apache.org/viewvc/sling/tags/sling-17</url>
+ </scm>
+
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.9</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>javadoc</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ <configuration>
+ <stylesheet>maven</stylesheet>
+
<excludePackageNames>*.impl:*.internal:${site.javadoc.exclude}</excludePackageNames>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <version>2.12.4</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-changes-plugin</artifactId>
+ <version>2.8</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>jira-report</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ <configuration>
+ <fixVersionIds>${site.jira.version.id}</fixVersionIds>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+
+ <build>
+ <plugins>
+
+ <!-- Require Java 5 or higher for building -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>enforce-java</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireJavaVersion>
+ <message>
+ Apache Sling must be compiled with Java
+ 5 or higher
+ </message>
+ <version>1.5.0</version>
+ </requireJavaVersion>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <!-- Attach sources for all builds -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <!-- warn for SLING-443/SLING-1782 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>check-memory-task</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <echo>
+**************** WARNING (SLING-443/SLING-1782) ******************************
+On most platforms, you'll get OutOfMemoryErrors when building unless you set
+on 32bit platforms: MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=256M", see SLING-443
+on 64bit platforms: MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M", see SLING-1782
+******************************************************************************
+ </echo>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>set-bundle-required-execution-environment</id>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <phase>initialize</phase>
+ <configuration>
+ <exportAntProperties>true</exportAntProperties>
+ <target>
+ <script language="javascript"> <![CDATA[
+ var System = java.lang.System;
+ var bree = "J2SE-1.5";
+ var slingJavaVersion =
System.getProperty("sling.java.version");
+ if (!slingJavaVersion) {
+ slingJavaVersion =
project.getProperty("sling.java.version");
+ }
+ if (slingJavaVersion == "6") {
+ bree = "JavaSE-1.6";
+ System.out.println("Setting
Bundle-RequiredExecutionEnvironment=" + bree + " from sling.java.version=" +
slingJavaVersion);
+ } else if (slingJavaVersion != "5") {
+ System.out.println("Unsupported
sling.java.version=" + slingJavaVersion + "; must be 5 or 6.");
+ throw "sling.java.version must be 5 or
6";
+ }
+ project.setProperty("sling.bree", bree);
+ ]]></script>
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>ianal-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>verify-legal-files</goal>
+ </goals>
+ <configuration>
+ <!-- Fail the build if any artifacts are missing
legal files -->
+ <strict>true</strict>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>animal-sniffer-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>test</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <!--
+ override the default remote-resources configuration from the
Apache pom
+ to include our custom NOTICE file
+ -->
+ <plugin>
+ <artifactId>maven-remote-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <resourceBundles>
+
<resourceBundle>org.apache.sling:apache-sling-jar-resource-bundle:1.0.0</resourceBundle>
+
<resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
+ </resourceBundles>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Compile for Java 5 and higher -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.${sling.java.version}</source>
+ <target>1.${sling.java.version}</target>
+ <encoding>${project.build.sourceEncoding}</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <configuration>
+ <tagBase>
+ https://svn.apache.org/repos/asf/sling/tags
+ </tagBase>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-sling-plugin</artifactId>
+ <version>2.1.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-launchpad-plugin</artifactId>
+ <version>2.2.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-jspc-plugin</artifactId>
+ <version>2.0.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-jcrocm-plugin</artifactId>
+ <version>2.0.4-incubator</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-scr-plugin</artifactId>
+ <version>1.13.0</version>
+ <!-- As QDox is trying to inspect/load the classes
+ we have to add a slf4j implementation to the
+ class path of the plugin - we usually use
+ a static field for the logger and during class
+ loading this field requires an slf4j implementation!
+ -->
+ <dependencies>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.5.2</version>
+ </dependency>
+ </dependencies>
+ <executions>
+ <execution>
+ <id>generate-scr-scrdescriptor</id>
+ <goals>
+ <goal>scr</goal>
+ </goals>
+ <configuration>
+ <properties>
+ <service.vendor>The Apache Software
Foundation</service.vendor>
+ </properties>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>2.3.7</version>
+ <inherited>true</inherited>
+ <configuration>
+
<outputDirectory>${basedir}/target/classes</outputDirectory>
+ <obrRepository>NONE</obrRepository>
+ <instructions>
+ <Bundle-Category>sling</Bundle-Category>
+ <Bundle-DocURL>
+ http://sling.apache.org
+ </Bundle-DocURL>
+ <Bundle-Vendor>The Apache Software
Foundation</Bundle-Vendor>
+
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+
<Bundle-RequiredExecutionEnvironment>${sling.bree}</Bundle-RequiredExecutionEnvironment>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.3</version>
+ </plugin>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <version>6.1.26</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.cargo</groupId>
+ <artifactId>cargo-maven2-plugin</artifactId>
+ <version>1.3.1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>ianal-maven-plugin</artifactId>
+ <version>1.0-alpha-1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.groovy.maven</groupId>
+ <artifactId>gmaven-plugin</artifactId>
+ <version>1.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>animal-sniffer-maven-plugin</artifactId>
+ <version>1.9</version>
+ <configuration>
+ <signature>
+ <groupId>org.codehaus.mojo.signature</groupId>
+ <artifactId>java1${sling.java.version}</artifactId>
+ <version>1.0</version>
+ </signature>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <dependencies>
+ <!-- declare dependencies here rather than where
needed to
+ circumvent
http://jira.codehaus.org/browse/MANTRUN-51
+ -->
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-regexp</artifactId>
+ <version>1.7.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>jakarta-regexp</groupId>
+ <artifactId>jakarta-regexp</artifactId>
+ <version>1.4</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.7</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>emma-maven-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ </plugin>
+ <!--This plugin's configuration is used to store Eclipse m2e
settings only. It has no influence on the Maven build itself.-->
+ <plugin>
+ <groupId>org.eclipse.m2e</groupId>
+ <artifactId>lifecycle-mapping</artifactId>
+ <version>1.0.0</version>
+ <configuration>
+ <lifecycleMappingMetadata>
+ <pluginExecutions>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.maven.plugins
+ </groupId>
+ <artifactId>
+ maven-antrun-plugin
+ </artifactId>
+ <versionRange>
+ [1.3,)
+ </versionRange>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.maven.plugins
+ </groupId>
+ <artifactId>
+ maven-dependency-plugin
+ </artifactId>
+ <versionRange>
+ [2.2,)
+ </versionRange>
+ <goals>
+ <goal>copy-dependencies</goal>
+ <goal>unpack</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.codehaus.groovy.maven
+ </groupId>
+ <artifactId>
+ gmaven-plugin
+ </artifactId>
+ <versionRange>
+ [1.0,)
+ </versionRange>
+ <goals>
+ <goal>compile</goal>
+ <goal>testCompile</goal>
+ <goal>execute</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.codehaus.mojo
+ </groupId>
+ <artifactId>
+ build-helper-maven-plugin
+ </artifactId>
+ <versionRange>
+ [1.5,)
+ </versionRange>
+ <goals>
+ <goal>
+ reserve-network-port
+ </goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.sling
+ </groupId>
+ <artifactId>
+ maven-launchpad-plugin
+ </artifactId>
+ <versionRange>
+ [2.0.10,)
+ </versionRange>
+ <goals>
+ <goal>prepare-package</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.sling
+ </groupId>
+ <artifactId>
+ maven-jcrocm-plugin
+ </artifactId>
+ <versionRange>
+ [2.0.4-incubator,)
+ </versionRange>
+ <goals>
+ <goal>ocm</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.sling
+ </groupId>
+ <artifactId>
+ maven-sling-plugin
+ </artifactId>
+ <versionRange>
+ [2.1.0,)
+ </versionRange>
+ <goals>
+
<goal>generate-adapter-metadata</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.maven.plugins
+ </groupId>
+ <artifactId>
+ maven-dependency-plugin
+ </artifactId>
+ <versionRange>
+ [2.2,)
+ </versionRange>
+ <goals>
+ <goal>
+ unpack-dependencies
+ </goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.maven.plugins
+ </groupId>
+ <artifactId>
+ maven-jar-plugin
+ </artifactId>
+ <versionRange>
+ [2.3.1,)
+ </versionRange>
+ <goals>
+ <goal>
+ jar
+ </goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.sling
+ </groupId>
+ <artifactId>
+ maven-jspc-plugin
+ </artifactId>
+ <versionRange>
+ [2.0.4,)
+ </versionRange>
+ <goals>
+ <goal>
+ jspc
+ </goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ net.alchim31.maven
+ </groupId>
+ <artifactId>
+ yuicompressor-maven-plugin
+ </artifactId>
+ <versionRange>
+ [1.3.0,)
+ </versionRange>
+ <goals>
+ <goal>
+ compress
+ </goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.scala-tools
+ </groupId>
+ <artifactId>
+ maven-scala-plugin
+ </artifactId>
+ <versionRange>
+ [2.15.2,)
+ </versionRange>
+ <goals>
+ <goal>
+ compile
+ </goal>
+ <goal>
+ testCompile
+ </goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ </pluginExecutions>
+ </lifecycleMappingMetadata>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <profiles>
+ <profile>
+ <!--
+ Use this profile to install the OSGi bundle
+ automatically, during development
+ -->
+ <id>autoInstallBundle</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-sling-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>install-bundle</id>
+ <goals>
+ <goal>install</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <!--
+ We should execute this profile manually to make sure that all files
in our source code contain proper licenses.
+ This is very important and should not be skipped in any scenario.
It is very importnt for us to follow ASF policy.
+ Example: mvn -Prat prepare-release install
+ -->
+ <profile>
+ <id>rat</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <version>0.8</version>
+ <configuration>
+ <excludes>
+ <!-- Used by maven-remote-resources-plugin -->
+
<exclude>src/main/appended-resources/META-INF/*</exclude>
+ <!-- Generated by
maven-remote-resources-plugin -->
+ <exclude>velocity.log</exclude>
+ <!-- don't check anything in target -->
+ <exclude>target/*</exclude>
+ </excludes>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>emma</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>emma-maven-plugin</artifactId>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>instrument</goal>
+ </goals>
+ <configuration>
+
<metadataFile>${user.dir}/coverage.em</metadataFile>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <id>emma-bundle</id>
+ <goals>
+ <goal>bundle</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <classifier>emma</classifier>
+
<outputDirectory>${basedir}/target/generated-classes/emma/classes</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>emma-report</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.groovy.maven</groupId>
+ <artifactId>gmaven-plugin</artifactId>
+ <executions>
+ <!-- store the project's source dir in a
comma-delimited list for the emma report. -->
+ <execution>
+ <id>save-bundle-metadata</id>
+ <goals>
+ <goal>execute</goal>
+ </goals>
+ <phase>validate</phase>
+ <configuration>
+ <source>
+ if
(!session.executionProperties.sourceDirs) {
+
session.executionProperties.sourceDirs = "${basedir}/src/main/java"
+ } else {
+
session.executionProperties.sourceDirs += ",${basedir}/src/main/java"
+ }
+ </source>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <mailingLists>
+ <mailingList>
+ <name>Apache Sling Development List</name>
+ <subscribe>
+ [email protected]
+ </subscribe>
+ <unsubscribe>
+ [email protected]
+ </unsubscribe>
+ <post>dev at sling.apache.org</post>
+ <archive>
+ http://mail-archives.apache.org/mod_mbox/sling-dev/
+ </archive>
+ <otherArchives>
+ <otherArchive>
+ http://sling-dev.markmail.org/
+ </otherArchive>
+ <otherArchive>
+ http://www.mail-archive.com/[email protected]/
+ </otherArchive>
+ </otherArchives>
+ </mailingList>
+ <mailingList>
+ <name>Apache Sling Source Control List</name>
+ <subscribe>
+ [email protected]
+ </subscribe>
+ <unsubscribe>
+ [email protected]
+ </unsubscribe>
+ <archive>
+ http://mail-archives.apache.org/mod_mbox/sling-commits/
+ </archive>
+ <otherArchives>
+ <otherArchive>
+ http://sling-commits.markmail.org/
+ </otherArchive>
+ <otherArchive>
+ http://www.mail-archive.com/[email protected]/
+ </otherArchive>
+ </otherArchives>
+ </mailingList>
+ </mailingLists>
+
+ <!-- Please visit our website for the current information about the
+ Apache Sling project team. (see #SLING-1120 why we don't include
+ the list here) -->
+ <developers>
+ <developer>
+ <name>Apache Sling Project</name>
+ <id>sling</id>
+ <url>http://sling.apache.org/site/project-team.html</url>
+ </developer>
+ </developers>
+
+ <dependencyManagement>
+
+ <!-- OSGi Core and Compendium API -->
+ <dependencies>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>4.1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ <version>4.1.0</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Web Application API -->
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- JCR API -->
+ <dependency>
+ <groupId>javax.jcr</groupId>
+ <artifactId>jcr</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Basic Logging -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.5.2</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- OSGi support annotations -->
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ <version>1.9.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>biz.aQute</groupId>
+ <artifactId>bndlib</artifactId>
+ <version>1.50.0</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Basic dependencies for Unit Tests -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.11</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jmock</groupId>
+ <artifactId>jmock-junit4</artifactId>
+ <version>2.5.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.5.2</version>
+ <scope>test</scope>
+ </dependency>
+
+
+ </dependencies>
+ </dependencyManagement>
+
+ <dependencies>
+ <!-- OSGi support annotations -->
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>biz.aQute</groupId>
+ <artifactId>bndlib</artifactId>
+ </dependency>
+ </dependencies>
+
+ <distributionManagement>
+ <site>
+ <id>apache.sling.site</id>
+ <url>
+ scp://people.apache.org/www/sling.apache.org/generated
+ </url>
+ </site>
+ </distributionManagement>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>apache.snapshots</id>
+ <name>Apache Snapshot Repository</name>
+ <url>http://repository.apache.org/snapshots</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ </pluginRepositories>
+
+</project>
Propchange: release/sling/sling-17.pom
------------------------------------------------------------------------------
svn:eol-style = native
Added: release/sling/sling-17.pom.asc
==============================================================================
--- release/sling/sling-17.pom.asc (added)
+++ release/sling/sling-17.pom.asc Fri Jul 19 06:45:30 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJR3AmjAAoJED/PUp/y8noG9QIP/j4f0crmrbOWRcv4pbNsHQhE
+6s6lOkOuiaU/uZDYmc5YUpTMsvkUxlxLjceb3MlHLUPniwYfMI8TIqlQRuqWVTSK
+WTS80DZKUY2FgNtzHA6lL/aL7ozIJwG1LbFrBhY/88w90/KpReMJMAWvb4pwgWdu
+mGvIN3wQSHGR23IlMJsJqbT+kDnPZ5I71TsGQUVi0azSLjLiKygGB5ZT2seHWZU4
+lBcqNjJ3KXKjO/5+7o2r6qXzyvhrAdXkqwqbo2VI1uT6TSiadhgzhpU3Xf8BaB5b
+mzuDHVUjPUEKM3Ww1PfzTgZraXJBr//y/qHlhXVZonRDRxwLZoD3t4+OnAUTy0Ln
+iFJnjOaXJdT/97ZeftzRoSLwPtPnKWqJ+Yv6n4kwpjyT0pFMKHP+fKqywrVcuGq/
+zV07K8lZTwkgSdhapnRaQeOWGufGXygb3RODiovzVQg+qV1e89iolwMFSNQfEfj+
+fbx37GMUra6Kdf53fk/NSI/Zz5jlNL3jFxKgv0n+0pctDk0QPfZTAW4ezFJv2pIm
+elDiH3OWa4Xio098iWZNC5/SKEK7CvoyXEKOZCPQaVhpABB+ndMbdfwP/W4o7yEQ
+tFydwjUUcFDfO1LFiifdcw4v4ghPJKQNqAVXvv+++SzFL1EHf7GEHT83qdCtViNa
+kLlwoVRAxE22ZIPWOFSY
+=CEqN
+-----END PGP SIGNATURE-----
Added: release/sling/sling-17.pom.md5
==============================================================================
--- release/sling/sling-17.pom.md5 (added)
+++ release/sling/sling-17.pom.md5 Fri Jul 19 06:45:30 2013
@@ -0,0 +1 @@
+4c6dbb811cb11dd81007fe6e0f088fd9
\ No newline at end of file
Added: release/sling/sling-17.pom.sha1
==============================================================================
--- release/sling/sling-17.pom.sha1 (added)
+++ release/sling/sling-17.pom.sha1 Fri Jul 19 06:45:30 2013
@@ -0,0 +1 @@
+87487c4332ace0657f17be5d068d272044d4283a
\ No newline at end of file