You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2006/05/13 02:43:56 UTC

svn commit: r405963 - /myfaces/tomahawk/trunk/examples/pom.xml

Author: mmarinschek
Date: Fri May 12 17:43:56 2006
New Revision: 405963

URL: http://svn.apache.org/viewcvs?rev=405963&view=rev
Log:
build sources.jar on examples build

Modified:
    myfaces/tomahawk/trunk/examples/pom.xml

Modified: myfaces/tomahawk/trunk/examples/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/examples/pom.xml?rev=405963&r1=405962&r2=405963&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/pom.xml (original)
+++ myfaces/tomahawk/trunk/examples/pom.xml Fri May 12 17:43:56 2006
@@ -49,6 +49,25 @@
     </dependency>
     
   </dependencies>
-
+  
+  <profiles>
+  <profile>
+      <id>generate-assembly</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-source</id>
+                <goals><goal>jar</goal></goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>