You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by gn...@apache.org on 2013/12/06 00:11:27 UTC

svn commit: r1548326 - /felix/trunk/utils/pom.xml

Author: gnodet
Date: Thu Dec  5 23:11:27 2013
New Revision: 1548326

URL: http://svn.apache.org/r1548326
Log:
Make sure the source jar is built for utils

Modified:
    felix/trunk/utils/pom.xml

Modified: felix/trunk/utils/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/utils/pom.xml?rev=1548326&r1=1548325&r2=1548326&view=diff
==============================================================================
--- felix/trunk/utils/pom.xml (original)
+++ felix/trunk/utils/pom.xml Thu Dec  5 23:11:27 2013
@@ -48,6 +48,20 @@
   <build>
     <plugins>
         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>2.2.1</version>
+            <executions>
+                <execution>
+                    <id>attach-sources</id>
+                    <phase>prepare-package</phase>
+                    <goals>
+                        <goal>jar-no-fork</goal>
+                    </goals>
+                </execution>
+            </executions>
+        </plugin>
+        <plugin>
             <artifactId>maven-compiler-plugin</artifactId>
             <configuration>
                 <source>1.5</source>