You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by le...@apache.org on 2014/10/17 01:53:34 UTC

svn commit: r6783 [5/5] - /dev/any23/1.1/

Added: dev/any23/1.1/apache-any23-service-1.1.pom
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.pom (added)
+++ dev/any23/1.1/apache-any23-service-1.1.pom Thu Oct 16 23:53:30 2014
@@ -0,0 +1,211 @@
+<?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.any23</groupId>
+    <artifactId>apache-any23</artifactId>
+    <version>1.1</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>apache-any23-service</artifactId>
+  <packaging>war</packaging>
+
+  <name>Apache Any23 :: Service</name>
+  <description>Any23 Frontend and REST Service implementation.</description>
+
+  <properties>
+    <!-- the following property is used in the bash script as well, don't remove it! -->
+    <jetty.runner.version>8.1.4.v20120524</jetty.runner.version>
+  </properties>
+
+  <dependencies>
+    <!-- Core Module -->
+    <dependency>
+      <groupId>org.apache.any23</groupId>
+      <artifactId>apache-any23-core</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.any23</groupId>
+      <artifactId>apache-any23-nquads</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <!-- Logging -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>${slf4j.logger.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <!-- BEGIN: Servlet Deps. -->
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>servlet-api-3.0</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty-servlet-tester</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <!-- END:   Servlet Deps. -->
+
+    <!-- BEGIN: Jetty Deps. -->
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty-runner</artifactId>
+      <version>${jetty.runner.version}</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <!-- END:   Jetty Deps. -->
+
+    <!-- BEGIN: Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <!-- END: Test Dependencies -->
+
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>jetty-maven-plugin</artifactId>
+        <version>8.0.0.M2</version>
+        <configuration>
+          <webAppConfig>
+            <contextPath>/${project.artifactId}</contextPath>
+          </webAppConfig>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <version>2.2</version>
+        <configuration>
+          <webResources>
+            <resource>
+              <directory>${basedir}/src/main/resources/</directory>
+              <targetPath>/resources</targetPath>
+              <filtering>true</filtering>
+            </resource>
+          </webResources>
+        </configuration>
+        <executions>
+          <execution>
+            <id>self-contained-war</id>
+            <phase>package</phase>
+            <goals>
+              <goal>war</goal>
+            </goals>
+            <configuration>
+              <webResources>
+                <resource>
+                  <directory>${project.build.directory}/war-legals/with-deps/</directory>
+                  <targetPath>/META-INF</targetPath>
+                </resource>
+              </webResources>
+            </configuration>
+          </execution>
+          <execution>
+            <id>war-without-deps</id>
+            <phase>package</phase>
+            <goals>
+              <goal>war</goal>
+            </goals>
+            <configuration>
+              <classifier>without-deps</classifier>
+              <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
+              <archive>
+                <manifest>
+                  <addClasspath>true</addClasspath>
+                  <classpathPrefix>lib/</classpathPrefix>
+                </manifest>
+              </archive>
+              <webResources>
+                <resource>
+                  <directory>${project.build.directory}/war-legals/without-deps/</directory>
+                  <targetPath>/META-INF</targetPath>
+                </resource>
+              </webResources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <!-- Generates the distribution package -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>prepare-package</id>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+            <configuration>
+              <attach>false</attach>
+              <finalName>war-legals</finalName>
+              <appendAssemblyId>false</appendAssemblyId>
+              <descriptors>
+                <descriptor>${basedir}/src/main/assembly/prepare-war-legals.xml</descriptor>
+              </descriptors>
+            </configuration>
+          </execution>
+        </executions>
+        <configuration>
+          <descriptors>
+            <descriptor>${basedir}/src/main/assembly/with-deps.xml</descriptor>
+            <descriptor>${basedir}/src/main/assembly/without-deps.xml</descriptor>
+            <descriptor>${basedir}/src/main/assembly/server-embedded.xml</descriptor>
+          </descriptors>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <resources>
+          <resource>
+            <directory>${basedir}/../</directory>
+            <targetPath>${project.build.directory}/apidocs/META-INF</targetPath>
+            <includes>
+              <include>LICENSE.txt</include>
+              <include>NOTICE.txt</include>
+            </includes>
+          </resource>
+        </resources>
+      </build>
+    </profile>
+  </profiles>
+
+</project>

Added: dev/any23/1.1/apache-any23-service-1.1.pom.asc
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.pom.asc (added)
+++ dev/any23/1.1/apache-any23-service-1.1.pom.asc Thu Oct 16 23:53:30 2014
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJUQFTXAAoJEDpHF/BIuuv2dO8QAKtACSN+2/64H8JNhtgnnVeR
+u+P9ChliULms4zrtHp2nGlDQsIyBsAq6aXWE84f3fMlG+ZJykghCId+dBxXvbFCY
+4xGHtUonjYUFw/u/Y0ZAdM0XvETv/51v83bEXnoChczLTw+bZbFYvDcPZDik3AWe
+qqifr5eD4xNq6rvqisSMwx6VCyOdHQg7AIRT+Sbi3k3WLlZmpTnsfG27a7hJTq0i
+r3E67SPJ2cGz1nnqARScdlTH1eB99TjxFOXFtViBX+4O642Q6X2KERXI7hSlpU7P
+qdc6Nwc3DworNcN/Ray7jscX4QrNTwigPMPiK+rJaGFpdKwvpJxS3nr8NrzhzcKV
+p8m5/jipzU0P9/8Dyu6JB8FJajVn9Xeh1q+z/4TYDvJKPX3vGQtP5wfl1i/VKFcC
+bSd/vA5TNe1RyI8uaH188mAi4dXzXAYP63dLDnIWpTkDOrJH7b0alfrQbQW8bud6
+XIidQuh/KEzf2kHqPRP5O/2mK4ZBOKkp8KhKrnRdMj2UNGLAWKcxNAFHv/DxPjrH
+WPg9lnKZypeDkBdOwk5ctumsvt0lIqpmc5perNbkRdZuxWh00xbYJfy73hRhWexI
+Rm5LuVvucUF1rjFzLWKcL5xngqLolChe03EIPvVfEI+YyEqBTFl1nxuTkvlb4Olo
+3d3LDFLWR2oPepqq+mrH
+=HNr9
+-----END PGP SIGNATURE-----

Added: dev/any23/1.1/apache-any23-service-1.1.pom.asc.md5
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.pom.asc.md5 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.pom.asc.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+58630449cd05f3a9df9b53480bf387e8
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-service-1.1.pom.asc.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.pom.asc.sha1 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.pom.asc.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+fd5ad6c9f7962921619a718254c4d1896a3bfe87
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-service-1.1.pom.md5
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.pom.md5 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.pom.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+b8a07f7e8fe4b81c062eddbc42febe47
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-service-1.1.pom.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.pom.sha1 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.pom.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+403d929aa9de2bfa01ba3a0e2bed60936d26f678
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-service-1.1.war
==============================================================================
Binary file - no diff available.

Propchange: dev/any23/1.1/apache-any23-service-1.1.war
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/any23/1.1/apache-any23-service-1.1.war.asc
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.war.asc (added)
+++ dev/any23/1.1/apache-any23-service-1.1.war.asc Thu Oct 16 23:53:30 2014
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJUQFTWAAoJEDpHF/BIuuv2c4YP/jdYsJOlm3z4a6cQs8jh05Ri
+V9n4Af0zTflbSXxXlu7y9BUHt5HiLzCnFS2a+xqbyiADn4hWS1xfq5LsmiUGUaAR
+MoWcbJlafAbxAPDyOdeDVJMcSLTKomLOPGPW6t+7ccXDCVVx05OhWRngRFFqz9ex
+7WxwU/3moYQq27eAxdVADZT08jEAhMNg+i86f78JjswiPRoVtAvpjE8g9txcvVhY
+VqVHM2MwebKxVGrIKBAo/4EaeQQO66HCHu/eQZq4ibWGY3ByvcReab26LJAfEm6u
+FkSNwVkqHeNEMjWAcxu4QRhlGNxXDxlKJtWbK6YJSyvv/nwj2iZ5f2A4NYq2AGrf
+wmNFTVkjij2cty7dc59D+mvyGCvOz/juCk/l7neiudBUk9oLgwOuHefs+7CYMKVx
+ld+JmQdvGBiRPv25pB43OGhCH8X7hyG9jrE9tqR4Q2Xa2OUqOPNfU/pYvmHbVTwE
+p38Ya3/Mrrm7jr1ciGkezanDIQt5vUBhC/lbQmAqBODZmdHBzlCzwA8ofENzKYpB
+r+nCvLaoW9YUyn7iJugrmPaIn050JbaFavgA3qwlFii1IOPihdOkj253KdS3FGNM
+xFNmhV1JmiyJ4TjMY0wyT02mN8eVKx7tuIBDT7rWFGgocTHce8a2T58yHpZKo4we
+z20FxuQepH6iH983j3Pw
+=WMFE
+-----END PGP SIGNATURE-----

Added: dev/any23/1.1/apache-any23-service-1.1.war.asc.md5
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.war.asc.md5 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.war.asc.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+2dbf569e57628c06d32759304e76f527
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-service-1.1.war.asc.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.war.asc.sha1 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.war.asc.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+e44a12b389decf46df87e09a05cf68c79b33909d
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-service-1.1.war.md5
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.war.md5 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.war.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+d111499ec17c51d8b95f45f422c91c14
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-service-1.1.war.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-service-1.1.war.sha1 (added)
+++ dev/any23/1.1/apache-any23-service-1.1.war.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+72bb860471de3c31ca1b7659a396354540031b51
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc Thu Oct 16 23:53:30 2014
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJUQFRXAAoJEDpHF/BIuuv2msIP/1LbJqbv/zLy5lWNSl/RrW+c
+LqAMKhz+UhTsHB+dtx5BiHHC9yto3bLS0pXxOkvRZfzJnIJr0PrvDKHkWdyyfl7F
+gAQq4F7f9QrHBAowMqn4fWYLpSyjGqemMcad/6sQUI2jmZEApcBbJglk9+t+sZkp
+ylZFQjXgKNG4FUIIUN+91Ia3OR/OAvObAmuc26HyUeEh9n8HOLM48cXZjHgtiWbn
+SnjbxJ5V98R+RrjmKjFYtSizGZdTR4J7WfQzUqZjSRfq7H/BTIUjDEsyD7NYNwFI
+w9OfOFs7MRR79s/empOE/k44AkpJVO130/x77uoU++/XiY8VnMMYaUHUF3rb/2/r
+VvQu4ZPwSZPSx3r3wMA0Jf5C3+m33r3Q1MfYBTm+/cToWTKGpT4X/DqU+VhIqkhw
+pFpUjxGGafAvp1lSDtzl2pY7AXT45+aw5cmHm78yVv3Ffdnl1xvD8zNUQNIxn5SH
+RzW0aTfALZF1GBXi3l96uMz6DN2ttFL12Hh1BjmbxJEJRDEnohVZ1ROWQQYnfXfh
+aw2zApgK3jQUAaE1USE7dsnLrhqXE+/yd6nfueJcEripLdeu0XVD0o7Z0h+II8Ny
+42VcisJEut6Kyn49NAU/O9OM7GY5J07wwH9hkXKO8po2iQKTmMc+asbAhQRgJBFp
+KHahzq1u5MIe5oS8TaBU
+=r+8c
+-----END PGP SIGNATURE-----

Added: dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc.md5
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc.md5 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+7d6f7e133ec690070883dba2c0d42ec2
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc.sha1 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.asc.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+088b35cb8b0e2cd73081e3208c69c6be2ada09f4
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.md5
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.md5 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+c7684b1d8187e2e1576cbdbbefaf7e6b
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.sha1 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1-tests.jar.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+b410c861d89074e162f4cc6daaf529bdaf7fe5ac
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/any23/1.1/apache-any23-test-resources-1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc Thu Oct 16 23:53:30 2014
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJUQFRXAAoJEDpHF/BIuuv25jYP/30GKaIbh8LsMGEv6u1ZDRNM
+bPKUJBwjfp3GCSIEt88Fcuoz3bA6zqtKv/LZSVKkPGdLxWzU+O9IbvYDOBIdb5E2
+lXIMZr/NCF/xg0mwzA5K5+P8/FVpwq5s47wijNQ8iDV7pe3eQYE6s4kZzOOrIixX
+JfFjrKpsi4QXb7EE7vJXFzN1D6DxUD8TNjhlIA3v6Jsk4/FJJreSXtGQk37g58zh
+/j6Ov0xwMONA+yVmlr/dzPr143AggpU3QRovcd4gUDe5NApNzf8SoejoDTPPOaxW
+I6DkrrEdA9VoioYDXowArAPyW1vCAifKxiAvfgUX7HLAYOHQ4k7Fzs2sLjZLqEdS
+jQ3kjflUH6OpKK4HPoXivZX4tzkrOJ7tH/2TfZFbSM2DDlRVeJLa7D+uUm0Frxqb
+nlu2KjP3vLuZk3tYp5mskzNawjDOE7UU8cBzFEMMl15f3m0xSI8pLE94sKirld22
+P5XmckQ9GajHanfILptACleFofO2gGip+rbIAVZVT2ZzHOigZG3sC+iK9zbYJx1f
+u5z4oozPX0pTxHGC4h7T+8AUBnhCEHpvOdrlcJZafYLNt1++xuMTgNAvlb20RT4C
+OUMiY4YSVMw03zdR1pJe7EZ09ATgnwr21tMpVNQJYlLuO/7vikIaJ2wyAnWnzQvN
+CrgXmqKosf3H9o5lBoAJ
+=TaMW
+-----END PGP SIGNATURE-----

Added: dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc.md5
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc.md5 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+28b270fb47ff74819f693ec9a71cf6ad
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc.sha1 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.jar.asc.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+a1247f305ebc9d104e4806cb2b0604be85c23b0f
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.jar.md5
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.jar.md5 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.jar.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+f63a0d89160b6ce7a50f89b40d430db7
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.jar.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.jar.sha1 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.jar.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+402f772e895d27bafbf0a4bdc76f012d3032e5c7
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.pom
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.pom (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.pom Thu Oct 16 23:53:30 2014
@@ -0,0 +1,48 @@
+<?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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>apache-any23</artifactId>
+    <groupId>org.apache.any23</groupId>
+    <version>1.1</version>
+    <relativePath>../</relativePath>
+  </parent>
+
+  <artifactId>apache-any23-test-resources</artifactId>
+
+  <name>Apache Any23 :: Test Resources</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc Thu Oct 16 23:53:30 2014
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJUQFRXAAoJEDpHF/BIuuv2VvUQALi3SIWxTFUkP++2MmCWwF+G
+8vZVmgWoSLpWjTsSL8MFfN8md8gESvfZIG2xb8xYj1Y99Kaoo1IciznOciWiJRBq
+QoQl3tIwBkgxUX46Wvarx/D6dZF/rARSL3oJyXRRt5GZcBXEo3k3ofZAgy8bobun
+LrZ5VfZl64IvDtD3DMm89/NQf0Eff8fV2stwO7Od2Y54SOB9fqieuNw+PFFwOUlF
+AzS7nTOViUhktZSA1uwmrwlhwn57l4TCNErOKK6afdEukZ6kUji/Qn8f+0PV3Oq8
+KMZVY4DP4K0fPG+iKI3AUg5QhUKJKBSbjqpLdjNvwvTU+8jOZ87qn5eLaO6X4vW5
+alOumNtJuoeQlTOVK31A8d052mlo7EMXLNn5Yrx7+W9LTsbdqSfFoIBlCvlr+l1I
+hHgXmot3z4oZ1+1r2Q+vtpwKyLbQpow6NUhEoV+740qeltIBRW7k9X3+wiPRmaxv
+93oEvRIWA35lVkL7w/JOp+M/cyduxJncTjELfI5ZyS/gXR2w9Dxt4q3QTVuo1CdH
+MZ5vAXSzfE8YgVapATe8sFo+WFrrqtCQUuXNRjYQq59JtD07qmFItSSt3Rn1JV4W
+vDdCYSoN+oFPF3RkQVv9mDUL4LXG2KvnFPP7b3uME1vjbbI9ZdOTTvLU27qSuidp
+aj+JyOWHnQTvRwBPApSi
+=ouD8
+-----END PGP SIGNATURE-----

Added: dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc.md5
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc.md5 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+2d2a301211eefad7db36ca8283b2077b
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc.sha1 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.pom.asc.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+aeaa15d9025f89f159b16288736a7c8008d240cc
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.pom.md5
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.pom.md5 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.pom.md5 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+0f2986515bf320d49448dd3bfb72d372
\ No newline at end of file

Added: dev/any23/1.1/apache-any23-test-resources-1.1.pom.sha1
==============================================================================
--- dev/any23/1.1/apache-any23-test-resources-1.1.pom.sha1 (added)
+++ dev/any23/1.1/apache-any23-test-resources-1.1.pom.sha1 Thu Oct 16 23:53:30 2014
@@ -0,0 +1 @@
+87c8ee40fa12e4a9d5f8bc68e899544396aa2fc4
\ No newline at end of file