You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2013/01/21 10:41:23 UTC

svn commit: r1272 [3/19] - /release/sling/

Added: release/sling/maven-jspc-plugin-2.0.6.jar.sha1
==============================================================================
--- release/sling/maven-jspc-plugin-2.0.6.jar.sha1 (added)
+++ release/sling/maven-jspc-plugin-2.0.6.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+7a0f873460ed7ed4d7e58a36c95c797144a25d2c
\ No newline at end of file

Added: release/sling/maven-jspc-plugin-2.0.6.pom
==============================================================================
--- release/sling/maven-jspc-plugin-2.0.6.pom (added)
+++ release/sling/maven-jspc-plugin-2.0.6.pom Mon Jan 21 09:38:36 2013
@@ -0,0 +1,135 @@
+<?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.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>12</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.sling</groupId>
+    <artifactId>maven-jspc-plugin</artifactId>
+    <version>2.0.6</version>
+    <packaging>maven-plugin</packaging>
+
+    <name>Apache Sling Maven Plugin for Compiling JSP Sources into Bundles</name>
+    <description>
+        Maven Plugin compiling JSPs
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/maven-jspc-plugin-2.0.6</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/maven-jspc-plugin-2.0.6</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/maven-jspc-plugin-2.0.6</url>
+    </scm>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>2.5.1</version>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                  <!-- No javadocs -->
+                    <excludePackageNames>
+                        org.apache.sling
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.2.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.jsp</artifactId>
+            <version>2.0.18</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.5</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet.jsp</groupId>
+            <artifactId>jsp-api</artifactId>
+            <version>2.1</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>1.4</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.0.4</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-archiver</artifactId>
+            <version>2.0</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>1.5.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <version>1.5.2</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+</project>

Propchange: release/sling/maven-jspc-plugin-2.0.6.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: release/sling/maven-jspc-plugin-2.0.6.pom.asc
==============================================================================
--- release/sling/maven-jspc-plugin-2.0.6.pom.asc (added)
+++ release/sling/maven-jspc-plugin-2.0.6.pom.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.12 (Darwin)
+
+iQIcBAABCgAGBQJPJ/elAAoJED/PUp/y8noGs8QP/0+m9wzY52LHTDVy97najhpf
+diixc1/+RePusWv/3kup81r6HjdaTNRGf3ZbhE5QC/c/HJzOHKwwRZ1NjDEjWzp+
+vGrzDrOkmdKdWYEVlhwmP377voibmTSKyar69s90UrWBEuEQM0FTeZeDPKaKAk6W
+GUbDoXgICOyipPR7ECFNtfoSWATvQAVzroJPFBuUreEWN+50xABOtsVH/DMVUqmX
+Pq6mlKIB8It2Bcxge8qlHg5eBR7vGsAtwcM392e0WQSAo0P3g9ktBqYqs7zK136M
+t5eMwtyLuRtXuL7R9YbdGjOl6a87+PqPJozAVxDETfKFQNsCNuT0PSZI0SZhkbDF
+jkzV43lJYMW6u2QnKVDgeF3YwslLKP4r+l9j0hQaGbxAnua1uVETiHeIyVCn6bnf
+BTa3fnep5VyKUnDRYxsEo4CP5ieDIUx4zYLoyH6SLzHYtsjP6pXzhkh8yJHfaBA3
+qo6ElsWDYQJzGgEfN7qvLr/zdET13RpT7NMtgU0O/YvDbuDxZHBRn7IRrxS2HkiS
+VzkeVaMOs+M2T+N/ccaeRtFX1/zFQjVZPr3rmM9DI73eh1zt+8Afnc4tJih4v4v1
+K3twQ2aGldEEUEY8uF64GZwQg+wbCH/DCrfHEzGsPEYWB+7A44S4hR2avwC/J0ih
+OAC05HaPtbNQYlI/5+9N
+=3kbc
+-----END PGP SIGNATURE-----

Added: release/sling/maven-jspc-plugin-2.0.6.pom.md5
==============================================================================
--- release/sling/maven-jspc-plugin-2.0.6.pom.md5 (added)
+++ release/sling/maven-jspc-plugin-2.0.6.pom.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+7a744768ae4d10ba6998c65b0d7416aa
\ No newline at end of file

Added: release/sling/maven-jspc-plugin-2.0.6.pom.sha1
==============================================================================
--- release/sling/maven-jspc-plugin-2.0.6.pom.sha1 (added)
+++ release/sling/maven-jspc-plugin-2.0.6.pom.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+8d64c660ed3bee054e66ee943258e9ebd7e68104
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.asc
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.asc (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQpfBtAAoJED/PUp/y8noGu+8QAIFimCkTIRkxfVE2ptfXp/An
+0DusymGpHntctn5XA6I3WFUe6m543IUo0guZBWWiDgVN4mOtkxns/Gv5FOSuM5JB
+3e5Kouglp4dq0G0plXbe80q/94Hk+dcFTGIh8OWTEAoO8llbqdpTi5Qj6rtRr/5P
+B5F8gR8tlq/70sbhQGu33RwBgt2KjpyhoYodqn2UOmx1tFu9ZQWnJL6jebd3BBxI
+6uwPkxh0v+N9fwyisLJIAh/ZfzMu5YWLlALHo/G2nVKjL07VbPKW8hkTeZhC96YN
+m/bqrmyC9T3cmNdWRVfmSklz+WO1ccLJX+NT/GpmBaI6Xndsxj7Q0+I+/nuo9cAu
+QrOv6Hn9VmMRsrYpyBfR7tboIXUkH3CLEs3+V1JcbNnQLDPTrw1gliqFz4G69ykO
+0rshMK6h0N6B7tWMrS/6X6BP5ocvaLMm+IPTEiHtPKuue9WLFzhX6tp+mMuz13ki
+8oF+kkyyhrpWsUdOLX0ishpPDuHBULWfrGQt2MTpVX/kXrkw5lqBFLGunzO+UNUt
+cwageeSGeggyjphY4wti40cUftlMxf8VsNbIM0Uf/EJDzOtnc1WRLEHjre0RsKOR
+ZX8L8QTpRqKM2GMMFqN5UH18bcDlBcOHcvtqOcyFhh5S3PoFzatb8T9dCjSG7BTA
+kAUIzPaYmCJp9h8VFmU7
+=Q5hs
+-----END PGP SIGNATURE-----

Added: release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.md5
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.md5 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+9d89b3233dbd7d8afe1ccfe625077238
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.sha1
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.sha1 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-javadoc.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+32922c77d38cc71b47805df63db63512babb7a96
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-launchpad-plugin-2.2.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.asc
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.asc (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQpfBsAAoJED/PUp/y8noGzRcP/0kqlVAhTY23iFmgF7bwNEeI
+nXBZl3xOZhMN97mGE28xfFCN1yaZnluR7CeW7jz86Kt/TpU/nLkJ1iccTW1XgzHm
+5zpB672KE1L+tF5HXTHWcyN2nVm7647Pfb1CsmKizruKFZ6Td/LFqQjWFUVOjm6G
+ho/p6tXGQICG12B+f27EHWylN/e+J1qP22J5rBXT/qOqbTgTU1avQs5fIXzy4ogb
+et6nnqHLJmLFZTo/BUbcm0K/tfpzcKurFC6H1x54slaqRnYOewV42vOctThBGcl5
+IYa/ONdyH7ZRc+OZv4hKhIoBfqAhCkJbRzdtv4mz5Rx33KOM3TxVU3owOip4Sb9a
+g53yx0+aR5d6BiObjZNkjFi3y6kGeg70jLHnp/HcgX7zxPFXRevRzufANzkClGBx
+nZoCu+JgCV+ubIx1/SVRjCFr7x6nG4NIhx34Z8BjQIOWKqX6gpvBingDfppu99jY
+JA5fdWRV8Op3IFmYgTp0qmJqZp+4gNJWDgsMmu4OH+iXcXuvIcE5ejpmgm8qgLlN
+Ox+8beq9p8oD4efdBV6OwRw24YtejP2Nq2PqzuN2rHYP2U9oV65RMhhPg5YDDCbR
+CxzTx3KQCzOTLfkhccDQWcMzfMAS7meXWWRQ8vwgAS4JnMwhLJtr6sxLKWrykJO3
+2/attrnyO6iDEG+44Cu2
+=n+vT
+-----END PGP SIGNATURE-----

Added: release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.md5
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.md5 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+4562f4da7dcca1c8c327aa5e07df0d2e
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.sha1
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.sha1 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-source-release.zip.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+85842d8ffdc714c501c86f0a47363ccdfb7c7dc5
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-launchpad-plugin-2.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-launchpad-plugin-2.2.0-sources.jar.asc
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-sources.jar.asc (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-sources.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQpfBtAAoJED/PUp/y8noGxv4P/2lulwsixV+nnO4K24SrhLzC
+jqYL9JAM8lWxeP2eTzFmShrJ+UuIJTLbA8I4LhQZCVxhHJvSr2WQc4NBIfFNPuf9
+QcufLwD0OMhqFo6Os+m9KDgjg3LJS3g6h44BVFQ5dJDSfzUcgH2Eq2iTBSUo6sTa
+MlLXg1lzErpaDq6rZD1IwUd8PB2SO5fNdLd2QT+TUZ383MPKTYToKopf0YheXJip
+HCATAR6wqWhnVO6uho8Q1dc3xNNVCcdA9gklrEzRaMqWJAI2RckWqtMDX8deQewh
+7XsOPTaGWiwECsF7BObkz3DlfCKsRIpDmVftM9fjQ2Hyn2Xvks69NJPTfNbQClIR
+dpky8ozC96cYDGiyTBSwPCLk3Do8bwtEsl7Co0eYIwabhKjbVJeAGD4eoOdQ6YXz
+yi+KpZbwEASAAxu+Qmyy2ybV6bvGhSksmeGwkfgWIr4rcrh2r2ltr2p/qaJ1xTid
+hMHlYObuf6Ew+oO3BwcDtMytRZn8omvbB2lVoVw0MvFohXebq2B2l6T2fB24MyCm
+MJhCWgqBGeJN958KDz2YaQqD/d1nUWc1pYRx7m8QB6RI/qllAv6Z1l8EcgBuQZqp
+vxmy66BF3lyVOXnMOYh1T3GgHwKilNOl8k8t60Mk34SsGz0rZ6iGIA86RNCS6WvA
+eZJhF/t6nQ1SaPlWlwf0
+=GPan
+-----END PGP SIGNATURE-----

Added: release/sling/maven-launchpad-plugin-2.2.0-sources.jar.md5
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-sources.jar.md5 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-sources.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+ff652b4b3f265b605816510c1ebf3683
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0-sources.jar.sha1
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0-sources.jar.sha1 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0-sources.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+ce5c07878410cd7eaa1b84ef1184a1495da2db7b
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-launchpad-plugin-2.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-launchpad-plugin-2.2.0.jar.asc
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0.jar.asc (added)
+++ release/sling/maven-launchpad-plugin-2.2.0.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQpfBrAAoJED/PUp/y8noGog8P/2ioUsjENI/1QJ6IMHy90vgR
+ae9DRoxLrtmgrG82Lu3kcsQ4CsBuj3nZNLKw+IFnGmV+Ej19kFC3cdQlXOTXXZoD
+6bOv3pfQxbBXkYUxi6ddY0NOyWUN3MoQUPGZetOcZeDL4BIFB0fgkEZyuZritqcB
+4AkCaNFAcitK6oqb0EuzGNPo2HEf09zohv3WbI0oYKdh8g1CFfzUVWATy/TaPL9e
+nTw6bP7fHte8ykW2bsZHMa20BFMEhNgAbsk1mh+jy0Sv2kuZLN273nQnlhe44C7r
+QcytrNW32GuEdyg1MIr3lfuNWhNivIqci/q9ZVr9X9V8pzf8u/cXVnMYv9/hJhJ7
+cSujrPFzzqV2Xzax8yHbUJ+7Ia6r+Pn06VqJzVya8sfyj7rEEGgphqZg9rP4yZ5g
+A7fIIHzPnJ46aTldZN0RjanI6norOPgz0x9f72yMWJ3u/P/RaRhWSfg1GyizmHoe
+6hpwwuJi7WTNAvsw7+wZS8my2bN57pZSjyi/yKwslJlZTR9XL2ZLc7N5HHdjYXXj
+jO0h80Qz17QhmzQ1CbAvtrasOJFOkz73Lf8xJsEs2wgWhey66HWWPZ/zxrzg5t1d
+drPZzytpcGMc2ORz7+qPrqpl+KgQo4cfxL/sp6Y4oHSVNL6xHS1nMx4nvc67FHqz
+j9B+RykElKntdeovE/yb
+=rFEs
+-----END PGP SIGNATURE-----

Added: release/sling/maven-launchpad-plugin-2.2.0.jar.md5
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0.jar.md5 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+5e25951e3626ab5e1d762ef451a1610b
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0.jar.sha1
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0.jar.sha1 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+9cc726b0e3ee9659a41035934a63b05378885751
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0.pom
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0.pom (added)
+++ release/sling/maven-launchpad-plugin-2.2.0.pom Mon Jan 21 09:38:36 2013
@@ -0,0 +1,224 @@
+<?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.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>13</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>maven-launchpad-plugin</artifactId>
+    <version>2.2.0</version>
+    <packaging>maven-plugin</packaging>
+
+    <name>Apache Sling Launchpad Maven Plugin</name>
+    <description>
+        Maven Plugin supporting Sling Launchpad
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/maven-launchpad-plugin-2.2.0</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/maven-launchpad-plugin-2.2.0</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/maven-launchpad-plugin-2.2.0</url>
+    </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.modello</groupId>
+                <artifactId>modello-maven-plugin</artifactId>
+                <version>1.1</version>
+                <executions>
+                    <execution>
+                        <id>bundle-manifest.xml</id>
+                        <goals>
+                            <goal>java</goal>
+                            <goal>xpp3-reader</goal>
+                            <goal>xpp3-writer</goal>
+                        </goals>
+                        <configuration>
+                            <version>1.0.0</version>
+                            <models>
+                                <model>src/main/mdo/bundle-list.xml
+                                </model>
+                            </models>
+                        </configuration>
+                    </execution>
+                </executions>
+                <configuration>
+                    <packageWithVersion>true</packageWithVersion>
+                    <useJava5>true</useJava5>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>emma-maven-plugin</artifactId>
+                <configuration>
+                    <filters>
+                        <filter>-*</filter>
+                    </filters>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.plexus</groupId>
+                <artifactId>plexus-component-metadata</artifactId>
+                <version>1.5.5</version>
+                <executions>
+                    <execution>
+                        <id>generate-metadata</id>
+                        <goals>
+                            <goal>generate-metadata</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>2.5.1</version>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <!-- No javadocs -->
+                    <excludePackageNames>
+                        org.apache.sling
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencies>
+       <dependency>
+           <groupId>org.apache.maven</groupId>
+           <artifactId>maven-core</artifactId>
+           <version>3.0</version>
+       </dependency>
+       <dependency>
+           <groupId>org.apache.maven</groupId>
+           <artifactId>maven-compat</artifactId>
+           <version>3.0</version>
+       </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+            <version>3.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-archiver</artifactId>
+            <version>1.0-alpha-9</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.codehaus.plexus</groupId>
+                    <artifactId>plexus-container-default</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.codehaus.plexus</groupId>
+                    <artifactId>plexus-component-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-utils</artifactId>
+            <version>1.5.15</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.jdom</groupId>
+            <artifactId>jdom</artifactId>
+            <version>1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.launchpad.api</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.launchpad.base</artifactId>
+            <version>2.4.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.launchpad.base</artifactId>
+            <version>2.4.0</version>
+            <classifier>app</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <version>4.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.shared</groupId>
+            <artifactId>maven-filtering</artifactId>
+            <version>1.0</version>
+            <exclusions>
+                <exclusion>
+                    <artifactId>maven-project</artifactId>
+                    <groupId>org.apache.maven</groupId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.shared</groupId>
+            <artifactId>maven-osgi</artifactId>
+            <version>0.2.0</version>
+            <exclusions>
+                <exclusion>
+                    <artifactId>maven-project</artifactId>
+                    <groupId>org.apache.maven</groupId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.drools</groupId>
+            <artifactId>drools-compiler</artifactId>
+            <version>5.3.1.Final</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>versions-maven-plugin</artifactId>
+            <version>1.2</version>
+            <exclusions>
+                <exclusion>
+                    <artifactId>maven-project</artifactId>
+                    <groupId>org.apache.maven</groupId>
+                </exclusion>
+                <exclusion>
+                    <artifactId>maven-artifact-manager</artifactId>
+                    <groupId>org.apache.maven</groupId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
+</project>

Propchange: release/sling/maven-launchpad-plugin-2.2.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: release/sling/maven-launchpad-plugin-2.2.0.pom.asc
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0.pom.asc (added)
+++ release/sling/maven-launchpad-plugin-2.2.0.pom.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIbBAABCgAGBQJQpfBsAAoJED/PUp/y8noGPQEP929lISwj/JkXULXxAXq7zO2P
+KFMXVsXEKYGpzm0XLd5Yl3qYi+nCN72xU6czg7VJTeSqAFS8q3MXVFCmpQ3vgnfa
+0+LChd5o1ToOA0RkvQ89Na5Wp7pgOu4QsnTMMBUiW9poRZERE+KrNMLyoRUub4gG
+J82C7vEUozRBQePFFfQe/c6IU5ewj7t8tx4gnnKI/pRFWuWgLSw1zWZhyappGaxV
+5fP+FFfQbDa3MHiTf1fqLaSZA6Y1555jXSzsRNW81GWBfkPZb251qiNK9/aNyYRF
+O60gyAsbHKNiEgqAjDBld+zODjgjXK9fsfkruWDxEVCOrvuuNVkNKknLQ8luAAVD
+0sVG9lW1JWvoLy8yzA7Q9470RTE9ACg+9I/FKYpd7WH+EgsqsepfYcTPSG59cMps
+UYJZVfINdYbUcSEKPyXqK43iKfCBxbaVf46F9/QbCjIcEbqdjYGvW3CdpjGrdE1d
+DJ3SUgRrMMiTsjRvOyI3AaIVXLgk+3Ut47Xcgp00YOMNIvsRuROjxY9h311XKI2e
+LNGeP+DB+USjkG/pga+mb64QJ1R94XTk8ZQzT15wKGCNjj1qiiUydkxWV0VXWUnx
+NcqgH/y5ZECTtcQbVMe80CVETH3Q1WkNBayCLCQq93ghxLk11zjlLMIFhj/ISqdv
+wAFa6tJxg4XDGm55WDc=
+=dBvd
+-----END PGP SIGNATURE-----

Added: release/sling/maven-launchpad-plugin-2.2.0.pom.md5
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0.pom.md5 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0.pom.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+8b1bf5feff14cfdb9686f11d31e2d430
\ No newline at end of file

Added: release/sling/maven-launchpad-plugin-2.2.0.pom.sha1
==============================================================================
--- release/sling/maven-launchpad-plugin-2.2.0.pom.sha1 (added)
+++ release/sling/maven-launchpad-plugin-2.2.0.pom.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+b82bffe04a7d4f94138cd9f36e3ec85d19a03e18
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-sling-plugin-2.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-sling-plugin-2.1.0-javadoc.jar.asc
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-javadoc.jar.asc (added)
+++ release/sling/maven-sling-plugin-2.1.0-javadoc.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,8 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iEYEABECAAYFAk8PEKoACgkQh9vwWhNLFFxn3wCgkCX9K61S+XTimYSr2sx8vXn1
+5gsAoK4OEMug8EEB5fRz1nPY7kKjvoeh
+=bui7
+-----END PGP SIGNATURE-----

Added: release/sling/maven-sling-plugin-2.1.0-javadoc.jar.md5
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-javadoc.jar.md5 (added)
+++ release/sling/maven-sling-plugin-2.1.0-javadoc.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+fc1e14e2255ce27c709f776fabd6c89e
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0-javadoc.jar.sha1
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-javadoc.jar.sha1 (added)
+++ release/sling/maven-sling-plugin-2.1.0-javadoc.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+ac6ab6a412f4ab911d629b0c097703e76e78cb41
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-sling-plugin-2.1.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-sling-plugin-2.1.0-source-release.zip.asc
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-source-release.zip.asc (added)
+++ release/sling/maven-sling-plugin-2.1.0-source-release.zip.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,8 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iEYEABECAAYFAk8PEKoACgkQh9vwWhNLFFxaLgCeLqeI044YhmsIL34r5qp9RFjO
+rhsAnj5gFcDF7rq8GHjiXI89hPHs/g49
+=x0K+
+-----END PGP SIGNATURE-----

Added: release/sling/maven-sling-plugin-2.1.0-source-release.zip.md5
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-source-release.zip.md5 (added)
+++ release/sling/maven-sling-plugin-2.1.0-source-release.zip.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+aee5dc880bc944d790b3e7067bc91d67
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0-source-release.zip.sha1
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-source-release.zip.sha1 (added)
+++ release/sling/maven-sling-plugin-2.1.0-source-release.zip.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+c2cea03f00a47002876dca85130136383d00aefd
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-sling-plugin-2.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-sling-plugin-2.1.0-sources.jar.asc
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-sources.jar.asc (added)
+++ release/sling/maven-sling-plugin-2.1.0-sources.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,8 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iEYEABECAAYFAk8PEKoACgkQh9vwWhNLFFxkBwCgiofU9IlWF+jDaJ2bsN/Rcku1
+yAsAoMYETP2HuojH7fgs4MYZppIwseOA
+=blAG
+-----END PGP SIGNATURE-----

Added: release/sling/maven-sling-plugin-2.1.0-sources.jar.md5
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-sources.jar.md5 (added)
+++ release/sling/maven-sling-plugin-2.1.0-sources.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+6c6864c2fb5313d191e823cbda9de8b7
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0-sources.jar.sha1
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0-sources.jar.sha1 (added)
+++ release/sling/maven-sling-plugin-2.1.0-sources.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+caae87f50139c20eccb3470ac503607cf54c2129
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/maven-sling-plugin-2.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/maven-sling-plugin-2.1.0.jar.asc
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0.jar.asc (added)
+++ release/sling/maven-sling-plugin-2.1.0.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,8 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iEYEABECAAYFAk8PEKoACgkQh9vwWhNLFFzOfQCcCw/2sdKZ+AoRxWv9Gal44XR9
+GKgAn1wDsOQ6/a+AXIAi06xWFiInvuEZ
+=bG3m
+-----END PGP SIGNATURE-----

Added: release/sling/maven-sling-plugin-2.1.0.jar.md5
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0.jar.md5 (added)
+++ release/sling/maven-sling-plugin-2.1.0.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+501a22cca01b912a325b50096e2ba7dc
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0.jar.sha1
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0.jar.sha1 (added)
+++ release/sling/maven-sling-plugin-2.1.0.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+346cde0b3cd22848f32cd88f9ac393f0b6d8f48e
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0.pom
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0.pom (added)
+++ release/sling/maven-sling-plugin-2.1.0.pom Mon Jan 21 09:38:36 2013
@@ -0,0 +1,127 @@
+<?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.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>12</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.sling</groupId>
+    <artifactId>maven-sling-plugin</artifactId>
+    <version>2.1.0</version>
+    <packaging>maven-plugin</packaging>
+
+    <name>Apache Sling Maven Plugin for Supporting Bundle Development</name>
+    <description>
+        Maven Plugin supporting various Sling Development Tasks
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/maven-sling-plugin-2.1.0</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/maven-sling-plugin-2.1.0</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/maven-sling-plugin-2.1.0</url>
+    </scm>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>2.5.1</version>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                  <!-- No javadocs -->
+                    <excludePackageNames>
+                        org.apache.sling
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
+            <version>3.1</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.0.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>1.4</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.json</artifactId>
+            <version>2.0.4-incubator</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.osgi</artifactId>
+            <version>2.0.2-incubator</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-archiver</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sf.scannotation</groupId>
+            <artifactId>scannotation</artifactId>
+            <version>1.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>adapter-annotations</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>asm</groupId>
+            <artifactId>asm-all</artifactId>
+            <version>3.3.1</version>
+        </dependency>
+    </dependencies>
+</project>

Propchange: release/sling/maven-sling-plugin-2.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: release/sling/maven-sling-plugin-2.1.0.pom.asc
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0.pom.asc (added)
+++ release/sling/maven-sling-plugin-2.1.0.pom.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,8 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iEYEABECAAYFAk8PEKoACgkQh9vwWhNLFFyEmACeKJ0FRrqcCHmqHxGv1MF7YOE8
+BxkAoIIqFkHzyanNVZ0euSkLgDbzpdb2
+=bCZb
+-----END PGP SIGNATURE-----

Added: release/sling/maven-sling-plugin-2.1.0.pom.md5
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0.pom.md5 (added)
+++ release/sling/maven-sling-plugin-2.1.0.pom.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+8161947ec8b10dfff5bbb31b69c0ee48
\ No newline at end of file

Added: release/sling/maven-sling-plugin-2.1.0.pom.sha1
==============================================================================
--- release/sling/maven-sling-plugin-2.1.0.pom.sha1 (added)
+++ release/sling/maven-sling-plugin-2.1.0.pom.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+adb6082b52955c027508a76f5cfa9698c577f765
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL/fAAoJED/PUp/y8noGl8kP+gL+L7Nbd8C/O/eioIVcWHAa
+uCMAphv3ob3JnoS27W/KzxtYt+/iLhIepiAv9pB1sxPfZmq5Ht4INz/qeu9R8yka
+df7pvx9B+9PoEf+vsSeYslDwENw5pJRwgqqosdVFUDt5hwI7EkjT6dIt/2ZBbeDf
+q3fqVpvPFggppgw+wDelWHlRFk1h8F7RA2kr3Fy0kJgqmYxrn0vxoia473tF5O2C
+bO992BxibpWJKgj7Zx79va/rgob+ZlDorfkfT/X4H6mkySdwbx7VbYSJtV86gBC/
+6fdqGP4rwnb9KbhjF7bhXZXTTnJvk4FAWpympF9nuPLF6kl5ZTPtS3pl3sQKqe2/
+WLrOZ1Ddr0iGu7WKkV5xW6PKToPHLt64EOyUJwXyR1AZYms240+stoUjicDJ92Dy
+V2qdJuibNWro7uhzedwqTyHz6C0hoNpbG2+LQX/k5BKpwxyWck17uzo6Y/Mf820v
+b1ES/0nA5pTYkUuRzDVyLO3qcK385Abu8gCVmWUk4jurbjC2ug0xyOltvUxxZ/y2
+Mc7lIjwuS3spW4Z/87e6aRWePZBmdVZNRQwHjKVCaCQ0cDhm1ZLlHbmY22HWV4Dn
+OMGpCImSakuEaHMWr7DT5O8tFm5wN9ZubEX30hsL+OykndIZeaXPE2FawYKKa//x
+lBsnFVa520UT3K00epZt
+=ZsEr
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+d95c234d84f32d5904afe745523a749c
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-javadoc.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+c23d4af56a379df6d4b453ccaed2c3b140898683
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.adapter-2.1.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL/eAAoJED/PUp/y8noGgXMQAKYiraaUERiy3azn4Mh6x5g1
+ItF72yrIpS1g02d4KQOUb5nUVRR0GKQuT44eDtOt7/lBSbXA2uES2/5Ku+l44Etz
++YJqw0Do4nx0XMRe+O4rVdU0PFOZGRsEoBWR7QthiQpCOmf+JHH6GBLlIFVQPa6D
+ZE0nJNnUeVDMsiXyluruB85RSYDOCP9X/MDnCVjnByXcixuZTtusqIE3jTrsGdTr
+IvAUKxOhrxv8+p1QYPUmLNV1x8+2SbkNBPzy5541vGPbMteDh0d5GffQ1NbVv2SD
+L/NIc+I17AWCL7Y7DNeDoOtyNxneDr5ffhQm6qAv+eqGODlHqS2rM6L7Q6Hlmze8
+WnD8HPloYCTkmrZibsy3CQHuxdWJuMRHiqk8iy2OrQxpd9TTVckHO6RaET4Hy5f1
+iRB7H/S7D5+aYii64OAS3OK7hsb5k0AuPM6xZacfem5e1UC49bAhX/usY3soMzLG
+TXYHI24d2xSxfui2CIEVPpUhxmsJZEKrzuo19gVbnguC0BslmE79OACvrGAFDWnq
+F3qM93wUg4Of0Iw8KR325gQUbx4e0am2JzfZWp2Hq+dtPSiP3QuKIp8+S/b3O2O8
+aSPrpB1eodndiEkYB0SyWRvhcdr1gUh7gJTao5DyVhMvjj7+xQXAx83pZl+kskIX
+taZ+1EsuEd102nHE4Kb3
+=3te2
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+2ad5d1593aa719ea12cbb5f31444b081
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-source-release.zip.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+39e1e5d9855991b3c74144288e9e4dceb72a70b0
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.adapter-2.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.adapter-2.1.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-sources.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL/fAAoJED/PUp/y8noGWa8P/1i/qEgQNhxKavQtdfP/VG7b
+YplKitiyNt/ELJ+/fWa/zO3MOQKJ2T3dP00fXJTsKWOIqBuC30kaxfzwRLQ29eNx
+WX6WHeOGQY+WuvhGyrZqqOx/EBiD6jNRCu7ElCgQkbmkwefC62SYM0tsEZq7m4CF
+Pd8KEpdFB5JBIhQaCUb+vX6Xx92idsBZuWKmOsKSol94RcYAvA9Gi7QD7v6OYUGa
+NcTObrBpEtGbq7bu2GlqUDRayBkrF0/RZsBxha+ONYDd+He0l7mIZ/KNUlTlFqti
++N/0BUOAQ1/qjOBjKhJ3RoteIlF8RzYOmJ0KheFvAMBqtwahENDRqton4kHKt9kH
+NrFVFqObGZLSC939YeFDJpkSn8SRs8yIYpGiwSUHmBq2tfixiKPddtKJVMKo07D6
+2V5yIEnipgDd0HV9Phn7deavJ/wjyj0wWPwxoPDQo81sC/Tt7R7gdM2sV9fhYz/0
+Y2EOoPeElVByPouqvnV0eY6av2T5s6q4kap2Hmf4jFYOiLVI+uX0McIJ3H7cR72d
+l+zBSue6jS4tN7q26S+bVrEbBN3br0phfjFyL7Zatf/xUEQhRVwRPf/34tIuDu1P
+mqaH4DYCr7YTFzHolpDxdR74pbQ4foqLlvX1qG6hL2m9OwCeo6u6x+QpDdKgQcsH
+NYwLWTpAR5/GRULcyVec
+=FDhc
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.adapter-2.1.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-sources.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+6f91d68a6f31ac335d5fb88fb134901a
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0-sources.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+cc2361d42d8deebbccdd4d27ef1e06a1412b6e4b
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.adapter-2.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.adapter-2.1.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0.jar.asc (added)
+++ release/sling/org.apache.sling.adapter-2.1.0.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL/dAAoJED/PUp/y8noG0PgQAK6VRwa80MwFYjdsAbeviWXe
+upqtO5C/6AdgHGE/LndUx0vggw5luWWCunQV35uhPq2yY5f/E2IW5bucs4u1Mbgl
+X2X85/Vz2cW/4DxCzjVANeOil+0d0+Ha78lU/HIGAwJhMcm0GDwNTP37Ps7XnjQj
+USpio3py/KxaMA29lf/lKXzPoTkJuOjUJAkCAXmSqG97Yr6xCXUnbz2gpet4nu1D
+lr+TXDX50df2DOGlfKdBVOHkW95GLsozP5po80hkaJkt4PbnBINBXkK2RMrfKZiq
+a9IXwiOC0qkgUJpOEz8BFrvTq022/gGnzjhJmDXPqU2C24ENzFRr4y2fvy/eJ53v
+B8ypsuPAYcvP+4lo/VMiqeRjZQ2+3QLARnjjYbw6wGwdOt/LCDZQuQz+iqWQEosQ
+HEtL5y/xuJApvBiJ1CHzHjMqF+MTXbguOeEJ5O5n/5nW+LHRNxh42pl/OBvIqjos
+0rcf++lQGxKDF+tP8/7clqq2AuZblPPpt0TbX13WflZ8QRpjqga5yIB8CmHQhX/c
+BQ48jVjVYPEMt6sWIASN+oOe5YH7vDbdBchuYD30Bfl2e3i9FtfbzXK4YTvfDd5x
+ya3b31N8TfWCgzWFZIz044S+sTN9MP+97IKyYnIa5/K0tyOWJjTMgLinAyDaP8e5
+/4RiT9io0w/pPMe3mEiA
+=mN8I
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.adapter-2.1.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0.jar.md5 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+a5e3922815673c116589c1e8f4d62abf
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+fd4614f5559e354461a2af5fe3bf26da101de8a7
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0.pom
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0.pom (added)
+++ release/sling/org.apache.sling.adapter-2.1.0.pom Mon Jan 21 09:38:36 2013
@@ -0,0 +1,157 @@
+<?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.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>13</version>
+        <relativePath>../../../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.sling.adapter</artifactId>
+    <packaging>bundle</packaging>
+    <version>2.1.0</version>
+
+    <name>Apache Sling Adapter Manager Implementation</name>
+    <description>
+        Bundle implementing the AdapterManager and provides a convenience
+        implementation of the Adaptable interface to make use of this
+        AdapterManager.
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.adapter-2.1.0</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.adapter-2.1.0</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.adapter-2.1.0</url>
+    </scm>
+
+    <properties>
+        <site.jira.version.id>12314288</site.jira.version.id>
+        <site.javadoc.exclude>**.impl.**</site.javadoc.exclude>
+    </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.adapter;version=2.0.6
+                        </Export-Package>
+                        <Private-Package>
+                            org.apache.sling.adapter.internal
+                        </Private-Package>
+                        <Import-Package>
+                            org.apache.sling.api.adapter;version="[2.2,2.3)",
+                            *
+                        </Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>
+                        org.apache.sling.adapter.internal
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.2.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.osgi</artifactId>
+            <version>2.1.0</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.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.scr.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jmock</groupId>
+            <artifactId>jmock-junit4</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>1.4</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.5</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+</project>

Propchange: release/sling/org.apache.sling.adapter-2.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: release/sling/org.apache.sling.adapter-2.1.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0.pom.asc (added)
+++ release/sling/org.apache.sling.adapter-2.1.0.pom.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL/eAAoJED/PUp/y8noGpe0P/1+Bmt9jlSWie0o8lfY3Qqpw
+P0KebMfIvSN6GWCJcQlldwE4lqXpmxaOJ0RJy+KN24UzA1Ejbn7uJW5D47qu7Hm2
+xLd3oFX5EB7+DV/becBMkvx6/b6hDd91JFUUpWw8f1lIE/WEE+XarpJ36P/QKNUi
+5Mp5kFIOzn1ivdLDnKeCoV6OEJdjJYVbCh6HX8juBVi/NI7svoCpM+f12WySlUZ1
+TMtYXpNvHwZOuuLJVHkgcpIz7KHGtwiU0csfphA2Nio3pnsc/xbNS5ka7rb1ET69
+OWr57679kv8S7nzUnwOodFTdpJrWQ6SpzsvnyRCuQ2/IZNT2hEzhbB2I0T9WdDrU
+y0kiUx+gwburl930jFfIQS/nOYjZcyDbkM7vkNms1PMNrvRBkfd/esO9SKOdelK7
+cvoBmBwtPmvMfu0xv+9S1815irMj+vTOX++PHVcPu4dSQ5s8+Sp/8aZJgVVLiSvF
+JHUl+HW9tex1CY9aAEQhjl6DehWUFjg2AM78JkXQvwe1RtlQmk0hoJIZkdbv7ghX
+z+vWJKgirH66R7woVAPWL3ylIn540jJQQyqrykQ/PcUTGdhUw7vo8stZH+ODOB6Y
+3o6KHxeAcf+iqybVZPyoRFuUkpYZzcLD5iqSsot9GXJhtSHW6Lq7idpED6oV/tH5
+gyaUwNMxJTQI+znZwc1R
+=dR3g
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.adapter-2.1.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0.pom.md5 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0.pom.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+ccea8063e6410046801c9aa466a90c53
\ No newline at end of file

Added: release/sling/org.apache.sling.adapter-2.1.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.adapter-2.1.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.adapter-2.1.0.pom.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+c51ec91516fea951dd2f84932beb648a374e730b
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.api-2.3.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.api-2.3.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.api-2.3.0-javadoc.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL9EAAoJED/PUp/y8noGoS4P/jjl+/Pazy+UbQhVM9edOjow
+ihfzaONBvi81XS53O6cAMBuzW6BBs9a56ZTjYRmvQGQeM7Qtl13ii8nyrYysD1iT
+xjNukMVUvridCLc0M/5vJsjRtZ5n4y9ljcfG2JkgiGrVlginN6egkJo1+AbBwdRp
+aVSB8ihVXAI+vmGbgPKUj8ofBX7IMNHuDfAatHsHr84vvifzRGZJgXJjjb7DjNV4
+W92JvKwg5lPts6WudM2AAOF2SRjg/YhzjiVQjVkN3m4zTS+xu2GLQ8doSPeclIKb
+d/XNPRriRrg0UEtNQ1Mh/cjcgTmeYznPXWb7z0TG8Gh5oODZzkyUPoC4p5iDRvvc
+xxJG3YS+n3kyz3+s70W4OLbUCJ6/Lcn8g2jAK8cFTQYZ0HSOKa3j8FYVmLxqGkp9
+C+QMnetotS9fABVUXJGBQwZLzgfIwwOFAqcsBiXxF1mqtkUorEztdzHy1Nb605qh
+ONsmQJ96fZCa6/A8C0OU2Pajc1VkeBNphQk5KhB/lBiQr21t+G4/oHdUcHYD61WL
+gDO4wunPjel38usQKjrSK04HW81RiiDMWfWfFM6HeGDu9bgfwpmwvNJJB09A7y09
+94fnvI5fWpLih+Fy++LQUxC9Dk7D7azPCdqdG3eKc00H1Ht2RpWe/M1tVMfF0cm5
+V8244TGUm6dZavPWwzwF
+=4JOQ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.api-2.3.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.api-2.3.0-javadoc.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+85a752ab6582c40c1d25fdc716e494a9
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.api-2.3.0-javadoc.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+c7a73e6e9758fb4bb631fa3512bad32f88dad5e6
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.api-2.3.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.api-2.3.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.api-2.3.0-source-release.zip.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL9DAAoJED/PUp/y8noGJKsQAIwvOm29CwuM179rUqh4vm6F
+9IWBmTT/XDHrxOWvIY+oP+JDMN1KOANvxM/r+3ze249vsw9f+kjJy48esPwyQq73
+TtEnngpzHm7b2yByc2c5lgGDEXfoxbFEfkl0VOy3BMF46mlRTu27cowwGiNz0+sr
+Z7ZZorC3VVch7BkoegRYwY5TtjMUOlkIkKqdHiQif09pSrVSTUNwUe2WwsaUDA65
+mDqgU1Bge26UkU8ZJrjC+DalKUZTahyz2VAXtK67daGth3HmJUV23rKsGQRuQx+Y
+JdX2eCe1n/9u1RBHXG4Cbr2saenBEBuTGcTbSW2bXB2+cYb7y7jwevpwOj5DOd1k
+7gpLqrwob1/Trozj2moifO3GECObQSNPRlOpNZT86U1nzRyk49GgdH0Vljuvjw04
+j+SqrUWWlLhOt0FGkuKAbTXF4B0+2KL99eVXa3XupKc+emrJ/0LkBxNQsc5otk0z
+m9ai2buwledIB+F7n3oYPEA5voyWqBRfSmSIr0W+zZxVkS73P7dMxvRgeLg3D1sL
+cDuZwboqh1zKBxI/HNTnWeU3nogLZmvCmk43ES3LjHPjCVw1ExzNTH2AaoEVwYiB
+qf8zPhh6naQ0kJhLmCeVdznRut9hcrBw4V45xeXtBmEx7l100k63DYpyPk90a5/J
+GHtblxeRzHBNAlkZPTLM
+=ffLp
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.api-2.3.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.api-2.3.0-source-release.zip.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+298bd3a9a31d203be462e66fd17268aa
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.api-2.3.0-source-release.zip.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+f212b3814a7aea905b2950f9d1d6bee7471703fe
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.api-2.3.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.api-2.3.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.api-2.3.0-sources.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL9DAAoJED/PUp/y8noG09EP/3z6KjOZ4UygNEekyQI6WO90
+IIi0wqbyRSOrTqIfAgSwwQDtLvm36hJMDma3YMmVyxhYE2PfpZAyWtidf2fv3dY0
+OENZDNx/ahLp7Ah1eRmEUJBoq3O/++16cvD6DR0E2Xg20T3yd04DgdEfiopJt8/a
+aXHR2bJXmqWdc6HHZk1aP0mkOS/t7rPMfrO3brlXbYx0+6eYnrbCu0Ua4QmJR1kE
+fBwmOWmVfwrNx3HHQwh9yuY9txeQPuUq6fu/1tZUXzvPzHhR2Ub9OsLS5dW8rrVc
+ZE3E4aTU9sqo2LwbAG4+eNLobu4/t4BpXylZlLZQ57hK6FUjIiEGKKeZ6z1OX7+V
+pECMDaMXnNbekncxQO4ozJ8cAVud/p6Xm+8OCCg3+Cifys2pH6Jcd1necSxY384+
+TgwyXB9ZsVZSTMFpcB7467uXfOdjJONggV4//pJc1YveNDeDJGtwDsFT9KJ0TtDp
+xYA/SPjGQQkxFZYcTUtC7tDPYtR6B0bdNL3Cvdls/Y4mTJLC6ClXC8U7+rHC5PxC
+TQux/O+z7iZSMdqs/MwCKWPUTK1e1OWUyKMi2SKVYhrMZSBpd4a7xLDlz58wrdix
+tGh1sHYTRATOsyVcXnZd8eAxnTbuc+kkXrqHqvTVf4SYwg9fjO6wyAMbz1AJ1FgW
+v4Y1Y01eWRg2UTAIs5u5
+=gWTh
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.api-2.3.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.api-2.3.0-sources.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+4070140e52345eae54108282b51019e1
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.api-2.3.0-sources.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+46db678ccfb8b5b90a12838360c782224c9183af
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.api-2.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.api-2.3.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0.jar.asc (added)
+++ release/sling/org.apache.sling.api-2.3.0.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL9CAAoJED/PUp/y8noGxD4P/1WaO+8+nyAArkD3uyySb38b
+j2gfc27coiZnyPsJUEiHxsYcOtt0dw7DKSkaNcSM6suxlPjl1Ynx4hNHBjwHpMLS
+OcskkC9fRkoaVTWi0R3oQw7B5SOZ8VZ/0Y/OoNQtEr2rKuXOTsmKcu1aZ2mHsEtn
+46yI2U3q37hgtwPD9DCBl2xqSXWWcY+GfY5qsT1crpSbb1xzcWGqzOqtCAryFoso
+FjY9D6ZDzeavLcJHPkc4Lw/3pQx7bPQE/lxrkd9PCx7R3ilQB3RBrhiH1ovDGVoY
+3ZgkEKkS7AB6Ys/UYVcHNfOHVm2rvNfwIihRaUpgCIU0LXG3mwIM5gZSbozYZJJ0
+ib6g+HP9SF0KpdNHvLg8QeQmEotQRCygfZ4+eyNYV2E+6eq+ok8OKv/LXrTWnBFn
+14DL3pWPGkOIXbKPiOTmNVKNz0rwIoJih+LUnhK8v+U0LT9S0Sc/rKOzrKdWN67e
+1QeCC/IMsN6aB117Nqc0ac3ppQxB26iRRM3dTgtk6/+FjnbTsKMEsktAMTM3tyyD
+k0p3IljtVG6/zyYQKOeOxSJoQqFRWdJkC0/Gn1kpMpSrQkq0J9rscdUGq5PK/9C2
+ZWrPSyzVTjbVg4PzNhgFZKPRfdk9/L8EC+lnmc9sFqfd+IT8EEQxNHZVzatVaWAm
+5AnZGcCnbNU5tF+c/pAs
+=qcGH
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.api-2.3.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0.jar.md5 (added)
+++ release/sling/org.apache.sling.api-2.3.0.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+7c0c788135070034ecab361fa83b3ea5
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.api-2.3.0.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+4520d255ca8d0f17275b927e5713f0eb2868c9fd
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0.pom
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0.pom (added)
+++ release/sling/org.apache.sling.api-2.3.0.pom Mon Jan 21 09:38:36 2013
@@ -0,0 +1,129 @@
+<?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.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>13</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.sling.api</artifactId>
+    <version>2.3.0</version>
+    <packaging>bundle</packaging>
+
+    <name>Apache Sling API</name>
+    <description>
+        The Apache Sling API defines an extension to the Servlet
+        API 2.4 to provide access to content and unified access
+        to request parameters hiding the differences between the
+        different methods of transferring parameters from client
+        to server. Note that the Apache Sling API bundle does not
+        include the Servlet API but instead requires the API to
+        be provided by the Servlet container in which the Apache
+        Sling framework is running or by another bundle.
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.api-2.3.0</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.api-2.3.0</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.api-2.3.0</url>
+    </scm>
+
+    <properties>
+        <site.jira.version.id>12314252</site.jira.version.id>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>biz.aQute</groupId>
+            <artifactId>bndlib</artifactId>
+            <version>1.50.0</version>
+            <scope>provided</scope>
+        </dependency>
+        
+        <!-- Testing -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jmock</groupId>
+            <artifactId>jmock-junit4</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.testing</artifactId>
+            <version>2.0.6</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <!-- Create the bundle of the Sling API -->
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>2.3.7</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-DocURL>
+                            http://sling.apache.org/site/sling-api.html
+                        </Bundle-DocURL>
+                        <!-- Require explicit version of the servlet API -->
+                        <Import-Package>
+                            javax.servlet.*;version=2.4,*
+                        </Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <!--  See SLING-1521 -->
+                        <exclude>src/main/resources/org/apache/sling/api/servlets/HtmlResponse.html</exclude>
+                        <!--  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>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: release/sling/org.apache.sling.api-2.3.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: release/sling/org.apache.sling.api-2.3.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0.pom.asc (added)
+++ release/sling/org.apache.sling.api-2.3.0.pom.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQoL9CAAoJED/PUp/y8noGfyUP/A8XTLu1+brqtAoYSA8TXBO2
+gZRRdLCGtA5ZRWzpuqvtM9jHZR1ZZxYrUICfHM1vJdK6LI8I7oZe1tL2ExqKsU3h
+2aTs0DAyWO9F7U8x9zY7I971n4LVCOSTJPufE1Tq2T1WLbDutGF+dDmGTqWg5ndW
+cW2ZTcxLpdYlpAGu3pjjqOuJdO9PRNIGKxH5eXhCMj6/aQveXSsbUyZYDe9HNeRE
++2nfU1o7+dZMrmEs/GvuCTk4ac//Z4+hXcs0Rh4Jct9VbeRDqDstUSChZU/wWTcA
+Ax9k9cc+s5Ai0DuLlLMcKKYOGOex5oR+U1IjcO6WccYdlXiSqtSFUxJymU/EgGMh
+qYwKIQFBBRU2IWXauZ9dGLuSSVDZPu1tX85XGXBXJ98dH7l3wdJ4i/xRfW7hC2Z2
+4D2FbYYqn2QueWLhYVAnMlTFxVvjhnIxo4Bv0sAnRz75xyuRYu/+oYLk9OeZ3KkD
+2/Zw7obUqzEaztMIOJDtVBBCKN3iLxai7UdGfOErNm/n0ID7K/Dsb925JG4cBGR7
+Tw1sSMhAB1xPQEdgCPcjwP9Rtnh3sTIP6KmPOESgiuV57Nky/cxnW3J8phCBncQ4
+92zJwETkUt0D+mTAJUiydN50iMIjDwx/jg+P0itzA73AMfrS1gKSQr7HU9VEHtqc
+/m+VqLdT7My+ll39pRZB
+=QTOJ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.api-2.3.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0.pom.md5 (added)
+++ release/sling/org.apache.sling.api-2.3.0.pom.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+2ccd3b309d9b5a4bc740657c8aea2b8c
\ No newline at end of file

Added: release/sling/org.apache.sling.api-2.3.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.api-2.3.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.api-2.3.0.pom.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+55589546a38d5aefa2b94576138ded0d12f951f9
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQtJK9AAoJED/PUp/y8noGHGMP/AmcqmKIVZoCMvrHtgkm0h5G
+MHTGIJeBWkGnlPFzNLsVmNPd4G2BlBxnY5UYXncO3w6mCLY3nEluJVflVvl2ZEFi
+yachQuEYnNdMDyjcRvH9DEYfRilhbbeHe70N4iHNz+K/AsC0yOBT7CFgUo1wNLeu
+9HqgEO/Lnp87RMnvtQBnT9TDjT3HeI/QDb1GIPfl/fX2diviyAcbtqJJrHWyykNs
+lv6HUFM70xhnNdG3Et2f/HHTXdFVNG/rf0F+WKWIeSAQStv2v/gbGC8kINnbAlMu
+iHn0XKf1UniWExtPRtf4IfixqDV/WVslC9LQxfKSe0/LDvt7FdwJwcCgP9PkuF1p
+urCEgqjZ4DRfulVnUzP86lP2r7VUBBGVhsdRrsLZ4FIDB74vTwYFUGkPuvSmRqul
+/6MoSiwzjeWrvg4Gyy1cRnq9pyifQjMuss6fDfqKKC4bQW8FVyI3yxPrCGSUmBF9
+H9R5xurxlokVjEMDNMjB4PSbxedXkuCMVpjtkQfo4uys0YtVds89+wXCKB+4AoUG
+EwCblGkWIrZn2oIFTbA5GfGsJZxnag3Uzj8qjm1qUfkhWkBo9ga84s24rWI9not1
+IerBpxrZgAK2xJ53NhOwG0mTaguGZS8Dr+tNcTH+sijvR7+mJSeJMEgLiA2e2mNw
+YFzxXyXSw8Rz5qOUlZ+y
+=VBaW
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+c2d2606a2818a454fcf5f8a47cb0c0a0
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-javadoc.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+62dc4e4767bec3d5d8651f4cc86debbdc86f28f1
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQtJK8AAoJED/PUp/y8noGHTgP/0kF2C4wa6PGmdbLBfoWF91o
+dxQm2OU5J4SocCvwA3l6ckQLoIleuvz3Ycwi99ibIKwEP29f5AXvMPjrlc0xeTNB
++XVzOQH45PxiKdyzKCwe97ymo7bNHZoOXFu0tR6RnSWjtYSqLbq9fEWPfd/e/BbW
+Xq23vmgp/0g7JOKrcYoKv1eOqZVBqAsONEurHal5er1ldALXyvEQu0uxjljzC6jJ
+PHWat+WHMJK7S6o66OGXrZOpoSRK761k6XD5FcZ6XPd5BJ3m7UEH/9AQHeqPbEKo
+mBQIMuVNDykNj5B49jOG1BeSOAWcwJSwRKk1MiXhSH1SYI0OXvIMKLBIeGG/LUDX
+CAPArYe4wTI9sZkWxSal/dOOQ485JbfI/8IEbsZfHKU3+mhSboxTqUj6+8Cxpa1h
+1bmoDkUkbBn4ox/apg1ZeK0vWWbO1SQukYIBIF6kr35pblyiHwWMx1vFE39mM+9i
+W1A2fuQWRTKKjJ96LX2+pYLZvrd4btZJcgP4b6/lYapJnLflOD7yMAcnWl47FPQL
+Is6kj4KXUYyDGsahdmdoHZZY7Ob/ChszDR4vbPSTNoq6KPXUP9t+Gj9GTp6ejCM8
+Mhl1EBWXOlfBnx8bm9G+gIEKnldtKY3Riz+dzBpgnNDbgaZ3ZO9Ty9CLdL3tLUwF
+iogSUI7aSQUuSNQk/Vwd
+=Zea/
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+c30dc4d4853587281abea45fb661d249
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-source-release.zip.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+9f3b57402a9e091d040880c51c41dc74cfc6a48d
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.auth.core-1.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQtJK9AAoJED/PUp/y8noGTdgP/2zkw2cLd1ijBxGzkxZBIqv+
+PjgtpMAf0t070oXBhVm80Qe4lD5jbCxmSqp2yt0XlJVFohuKYgWD/TTREikyGQ/B
+3TJahmcYpfijrqhA1IL897EInG7FEmWVbulISd/emzLmD+FuxS/4Fz0COGoaNNqB
+NB4dNiGAu6hgyhWUYsMmjdtTVpHDNTjODEYvDFTar3C1bTTIILQ8HoPcfyBwPNtA
+GpC1kUVV55mCYdtquPGq11FDxvHw2HgHSPN3IPgkQcZcatyFxEAVSQXXr+4QM0eB
+cson8kwbABHE6YMS1utwlkf7oxbEoqU0x01BFBLXKOhoyg8ZwgXkAfaYFvzTAZkd
+9Pdj0bwh0/x3UW/G7QV6akpr8Trpgd8PjpZfNaK3T7cOAIXmCtH8omy9bRm8ELf1
+vN3MkPyy0x2qWDcZTfYWmsJj/CC75j3Mkd9qGdsAThJLtYWRIeJj4hP0OQRMkoUi
+9zKevNpCU2NBnms805kvJShdAgubXwDt9F00Th/JPKWxuAyMa1v4l/81vUNlcx3R
+VKIrRqmIgRtHED7mBRZCwrc7orm+40NHa2IdOkU6W9cBsSQUjex2umHfxK8W0A88
+CfZnE1J37Lj4f5zvPMqzpC/3tNmhir3QBSlynp1Wi/V3QwTy/FZml4EavPDVhdC6
+eP2zoJ760qmMGxtv+4hX
+=vnDz
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+89a51c79096875beb701475e5ad9cdfd
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0-sources.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+b738d7e7d46c5377c187d3c879ef8c2a2593feca
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.auth.core-1.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.auth.core-1.1.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0.jar.asc (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0.jar.asc Mon Jan 21 09:38:36 2013
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJQtJK7AAoJED/PUp/y8noGAgMP/2d9j8+rNFKMn49n2O6mPoSO
+6yx16WqCVJEdqp4P+BaQhoEyMKdqzoQXvwJjWSqjgABPqMUOPdVcBl5Eo4VkmxJK
+Bq5Zr+Y/HEeJvgIi6shMuR6Gm/YmzOdBTPmjcl6TqAVN+jIUL6wvT9ITPjxSsVW1
+lbdNC/b2Nwg3lN6/Uw266/eDRqYhkiIZ4vY9Q2l5dbUene8rf2QieaZiNdvm4XMc
+kv7wBExYEJEMnkR3v2CmG4azxe19ISL6FXYV9uAcTyg4M1hagxnaO3ssZG5B/clf
+3G78lwATzmRLu0bgZOE6eYhiqqQjpKbF4OWZpXOsT3HpF33YMiPKzmN35xwMlk/F
+1x85ZLoiENQRurZeg1gnjysZq7O+bFMAmRmITVvmFduu+quoQ31qJwK9qDcBczTS
+UJnwm0+ygtO1wQ5FZTk81oCX6VkkZJ/FVI6qIf7znfVS/qsK9p2ilbbMkSxBFDVc
+irUMufZxIO6od3f3Ji3RAwe7wLHoralUgKgZ9b6uwxTLAA7wfiI9oJ1vPcvWDfxl
+Ek+u8tIJjMKSrAbVbhs8kIVvmzPSrMGgkN6S3K+4R6+iCsBVYRxaROLcRAcED5Yv
+B5SEHP3KTFozqvQKps4nj7532WebLjECZsm3SOp5WVozflbZfSLElxsdqw0n5D+e
+g9bVybzQyqAZ1kX/CcG6
+=Me5F
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.auth.core-1.1.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0.jar.md5 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0.jar.md5 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+7e412f2865e7aa60c8605a7ba2fbf14a
\ No newline at end of file

Added: release/sling/org.apache.sling.auth.core-1.1.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.auth.core-1.1.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.auth.core-1.1.0.jar.sha1 Mon Jan 21 09:38:36 2013
@@ -0,0 +1 @@
+b3847111e399bddaf203638607c6c626cedae47a
\ No newline at end of file