[jboss-cvs] Repository SVN: r18705 - in maven2/org/jboss/resteasy: resteasy-spring and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 25 17:15:39 EST 2008


Author: bill.burke at jboss.com
Date: 2008-11-25 17:15:36 -0500 (Tue, 25 Nov 2008)
New Revision: 18705

Added:
   maven2/org/jboss/resteasy/resteasy-spring/
   maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/
   maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/resteasy-spring-1.0-beta-9.jar
   maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/resteasy-spring-1.0-beta-9.pom
   maven2/org/jboss/resteasy/resteasy-spring/maven-metadata-local.xml
Log:


Added: maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/resteasy-spring-1.0-beta-9.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/resteasy-spring-1.0-beta-9.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/resteasy-spring-1.0-beta-9.pom
===================================================================
--- maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/resteasy-spring-1.0-beta-9.pom	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-spring/1.0-beta-9/resteasy-spring-1.0-beta-9.pom	2008-11-25 22:15:36 UTC (rev 18705)
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <modelVersion>4.0.0</modelVersion>
+    <!--
+         <parent> <groupId>org.jboss.resteasy</groupId>
+         <artifactId>resteasy-jaxrs-all</artifactId>
+         <version>1.0-beta-9</version> </parent>
+     -->
+    <groupId>org.jboss.resteasy</groupId>
+    <artifactId>resteasy-spring</artifactId>
+    <packaging>jar</packaging>
+    <version>1.0-beta-9</version>
+    <name>Resteasy Spring integration</name>
+    <url>http://maven.apache.org</url>
+
+    <repositories>
+        <repository>
+            <id>java.net</id>
+            <url>http://download.java.net/maven/1</url>
+            <layout>legacy</layout>
+        </repository>
+        <repository>
+            <id>maven repo</id>
+            <name>maven repo</name>
+            <url>http://repo1.maven.org/maven2/</url>
+        </repository>
+        <!-- For resteasy -->
+        <repository>
+            <id>jboss</id>
+            <name>jboss repo</name>
+            <url>http://repository.jboss.org/maven2</url>
+        </repository>
+    </repositories>
+    <dependencies>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.5</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>cglib</groupId>
+            <artifactId>cglib-nodep</artifactId>
+            <version>2.1_3</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>3.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.4</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.resteasy</groupId>
+            <artifactId>resteasy-jaxrs</artifactId>
+            <version>1.0-beta-9</version>
+            <!-- filter out unwanted jars -->
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.servlet</groupId>
+                    <artifactId>servlet-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.resteasy</groupId>
+            <artifactId>resteasy-jaxb-provider</artifactId>
+            <version>1.0-beta-9</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring</artifactId>
+            <version>2.5.5</version>
+            <scope>provided</scope>
+        </dependency>
+        <!--
+              Test classes that integrates Junit 3.8 and 4 to Spring based
+              applications
+          -->
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-test</artifactId>
+            <version>2.5.5</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-webmvc</artifactId>
+            <version>2.5.5</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.persistence</groupId>
+            <artifactId>persistence-api</artifactId>
+            <version>1.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mortbay.jetty</groupId>
+            <artifactId>jetty</artifactId>
+            <version>6.1.11</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <finalName>RestEasy Spring MVC</finalName>
+        <plugins>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file

Added: maven2/org/jboss/resteasy/resteasy-spring/maven-metadata-local.xml
===================================================================
--- maven2/org/jboss/resteasy/resteasy-spring/maven-metadata-local.xml	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-spring/maven-metadata-local.xml	2008-11-25 22:15:36 UTC (rev 18705)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.jboss.resteasy</groupId>
+  <artifactId>resteasy-spring</artifactId>
+  <version>1.0-beta-9</version>
+  <versioning>
+    <versions>
+      <version>1.0-beta-9</version>
+    </versions>
+    <lastUpdated>20081125213715</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list