[jboss-cvs] JBossAS SVN: r88080 - projects/fresh/trunk/fresh-jar.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 30 18:54:22 EDT 2009


Author: alesj
Date: 2009-04-30 18:54:21 -0400 (Thu, 30 Apr 2009)
New Revision: 88080

Modified:
   projects/fresh/trunk/fresh-jar/pom.xml
Log:
shaded

Modified: projects/fresh/trunk/fresh-jar/pom.xml
===================================================================
--- projects/fresh/trunk/fresh-jar/pom.xml	2009-04-30 22:36:25 UTC (rev 88079)
+++ projects/fresh/trunk/fresh-jar/pom.xml	2009-04-30 22:54:21 UTC (rev 88080)
@@ -10,23 +10,45 @@
   
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.fresh</groupId>
-  <artifactId>fresh-sar</artifactId>
-  <packaging>jboss-sar</packaging>
+  <artifactId>fresh-jar</artifactId>
+  <packaging>jar</packaging>
   <name>JBoss Fresh - JAR</name>
   <url>http://www.jboss.org/fresh</url>
   <description>JBoss Fresh - JAR</description>
   
-  <build>
+<build>
     <plugins>
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>jboss-packaging-maven-plugin</artifactId>
-        <version>2.0-beta-1</version>
-        <extensions>true</extensions>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <version>1.2.1</version>
+        <executions>
+          <execution>
+            <phase>install</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <artifactSet>
+                <includes>
+                  <include>org.jboss.fresh:fresh-scripting</include>
+                  <include>org.jboss.fresh:fresh-shell</include>
+                  <include>org.jboss.fresh:fresh-ssh</include>
+                  <include>org.jboss.fresh:fresh-threadpool</include>
+                  <include>org.jboss.fresh:fresh-util</include>
+                  <include>org.jboss.fresh:fresh-vfs</include>
+                  <include>sshtools:j2ssh-common</include>
+                  <include>sshtools:j2ssh-core</include>
+                  <include>sshtools:j2ssh-daemon</include>
+                </includes>
+              </artifactSet>
+            </configuration>
+          </execution>
+        </executions>
       </plugin>
     </plugins>
   </build>
-  
+
   <dependencies>
     <dependency>
       <groupId>org.jboss.fresh</groupId>




More information about the jboss-cvs-commits mailing list