[jboss-cvs] Repository SVN: r22425 - in maven2/org/jboss/resteasy/resteasy-jaxrs: 1.0.1.GA and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 29 19:25:06 EST 2009


Author: bill.burke at jboss.com
Date: 2009-01-29 19:25:05 -0500 (Thu, 29 Jan 2009)
New Revision: 22425

Added:
   maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/
   maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar
   maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.md5
   maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.sha1
   maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom
   maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.md5
   maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.sha1
Log:


Added: maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.md5
===================================================================
--- maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.md5	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.md5	2009-01-30 00:25:05 UTC (rev 22425)
@@ -0,0 +1 @@
+ce971cc10726549008fef7bb988be8f7
\ No newline at end of file

Added: maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.sha1
===================================================================
--- maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.sha1	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.jar.sha1	2009-01-30 00:25:05 UTC (rev 22425)
@@ -0,0 +1 @@
+9749a4a20a73c734da203626ec0bfd3f229ff0dc
\ No newline at end of file

Added: maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom
===================================================================
--- maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom	2009-01-30 00:25:05 UTC (rev 22425)
@@ -0,0 +1,75 @@
+<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.jboss.resteasy</groupId>
+        <artifactId>resteasy-jaxrs-all</artifactId>
+        <version>1.0.1.GA</version>
+    </parent>
+    <artifactId>resteasy-jaxrs</artifactId>
+    <name>RESTEasy JAX-RS Implementation</name>
+    <packaging>jar</packaging>
+    <dependencies>
+        <dependency>
+            <groupId>org.jboss.resteasy</groupId>
+            <artifactId>jaxrs-api</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+        </dependency>
+
+        <!--
+           Scans classes on cp for annotations and builds quick lookup database
+           of them.
+        -->
+        <dependency>
+            <groupId>org.scannotation</groupId>
+            <artifactId>scannotation</artifactId>
+        </dependency>
+        <!--
+           Needed for javax.annotation.security.* which is part of javaee 6 XXX
+           should this dependency be <scope>provided</scope> and only used if
+           detected runtime?
+        -->
+        <dependency>
+            <groupId>javax.annotation</groupId>
+            <artifactId>jsr250-api</artifactId>
+        </dependency>
+
+        <!-- javax.activation.DataSource provider is required by spec -->
+        <dependency>
+            <groupId>javax.activation</groupId>
+            <artifactId>activation</artifactId>
+        </dependency>
+
+        <!-- Used for org.jboss.resteasy.plugins.client.httpclient.* -->
+        <dependency>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
+        </dependency>
+
+        <!-- Used by org.jboss.resteasy.plugins.server.tjws.* -->
+        <dependency>
+            <groupId>tjws</groupId>
+            <artifactId>webserver</artifactId>
+        </dependency>
+
+    </dependencies>
+</project>

Added: maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.md5
===================================================================
--- maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.md5	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.md5	2009-01-30 00:25:05 UTC (rev 22425)
@@ -0,0 +1 @@
+b177e543dddde83239d59dc8a5ee17de
\ No newline at end of file

Added: maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.sha1
===================================================================
--- maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.sha1	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-jaxrs/1.0.1.GA/resteasy-jaxrs-1.0.1.GA.pom.sha1	2009-01-30 00:25:05 UTC (rev 22425)
@@ -0,0 +1 @@
+9ce5720004afffa1e9fea466eb59a19bf39a99e7
\ No newline at end of file




More information about the jboss-cvs-commits mailing list