[jboss-cvs] Repository SVN: r15511 - in maven2/org/jboss/resteasy/resteasy-jaxrs-dist: 1.0-beta-7 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Sep 16 11:33:43 EDT 2008


Author: bill.burke at jboss.com
Date: 2008-09-16 11:33:43 -0400 (Tue, 16 Sep 2008)
New Revision: 15511

Added:
   maven2/org/jboss/resteasy/resteasy-jaxrs-dist/1.0-beta-7/
   maven2/org/jboss/resteasy/resteasy-jaxrs-dist/1.0-beta-7/resteasy-jaxrs-dist-1.0-beta-7.pom
Log:


Added: maven2/org/jboss/resteasy/resteasy-jaxrs-dist/1.0-beta-7/resteasy-jaxrs-dist-1.0-beta-7.pom
===================================================================
--- maven2/org/jboss/resteasy/resteasy-jaxrs-dist/1.0-beta-7/resteasy-jaxrs-dist-1.0-beta-7.pom	                        (rev 0)
+++ maven2/org/jboss/resteasy/resteasy-jaxrs-dist/1.0-beta-7/resteasy-jaxrs-dist-1.0-beta-7.pom	2008-09-16 15:33:43 UTC (rev 15511)
@@ -0,0 +1,74 @@
+<project>
+   <modelVersion>4.0.0</modelVersion>
+   <parent>
+      <groupId>org.jboss.resteasy</groupId>
+      <artifactId>resteasy-jaxrs-all</artifactId>
+      <version>1.0-beta-7</version>
+   </parent>
+
+   <artifactId>resteasy-jaxrs-dist</artifactId>
+   <packaging>pom</packaging>
+   <name>RESTEasy JAX-RS Distribution</name>
+
+   <dependencies>
+
+      <dependency>
+         <groupId>org.jboss.resteasy</groupId>
+         <artifactId>resteasy-jaxrs</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.resteasy</groupId>
+         <artifactId>resteasy-jaxrs-war</artifactId>
+         <version>${project.version}</version>
+         <type>war</type>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.resteasy</groupId>
+         <artifactId>jaxrs-api</artifactId>
+      </dependency>
+
+   </dependencies>
+
+   <build>
+      <plugins>
+         <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2-beta-2</version>
+            <executions>
+               <execution>
+                  <id>assemble</id>
+                  <phase>install</phase>
+                  <goals>
+                     <goal>attached</goal>
+                  </goals>
+                  <configuration>
+                     <descriptors>
+                        <descriptor>assembly.xml</descriptor>
+                     </descriptors>
+                     <outputDirectory>
+                        target/distribution
+                     </outputDirectory>
+                     <workDirectory>
+                        target/assembly/work
+                     </workDirectory>
+                     <finalName>
+                        resteasy-jaxrs-${project.version}
+                     </finalName>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-install-plugin</artifactId>
+            <configuration>
+               <createChecksum>true</createChecksum>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>
+
+</project>




More information about the jboss-cvs-commits mailing list