[webbeans-commits] Webbeans SVN: r2409 - extensions/trunk/tomcat/build.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Tue Apr 14 22:50:56 EDT 2009


Author: cpopetz
Date: 2009-04-14 22:50:56 -0400 (Tue, 14 Apr 2009)
New Revision: 2409

Modified:
   extensions/trunk/tomcat/build/pom.xml
Log:
create source jar for tomcat with shade, and fake out maven-source-plugin to avoide overwriting it


Modified: extensions/trunk/tomcat/build/pom.xml
===================================================================
--- extensions/trunk/tomcat/build/pom.xml	2009-04-14 23:26:56 UTC (rev 2408)
+++ extensions/trunk/tomcat/build/pom.xml	2009-04-15 02:50:56 UTC (rev 2409)
@@ -45,6 +45,14 @@
       <plugins>
          <plugin>
             <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <configuration>
+               <finalName>not-really</finalName>
+               <attach>false</attach>
+            </configuration>
+         </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-shade-plugin</artifactId>
             <executions>
                <execution>
@@ -55,6 +63,7 @@
                </execution>
             </executions>
             <configuration>
+               <createSourcesJar>true</createSourcesJar>
                <artifactSet>
                   <excludes>
                      <exclude>xml-apis:xml-apis</exclude>




More information about the weld-commits mailing list