You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2008/06/13 11:22:36 UTC

svn commit: r667436 - /servicemix/smx4/specs/trunk/locator/pom.xml

Author: gnodet
Date: Fri Jun 13 02:22:35 2008
New Revision: 667436

URL: http://svn.apache.org/viewvc?rev=667436&view=rev
Log:
Add source and javadocs to the locator

Modified:
    servicemix/smx4/specs/trunk/locator/pom.xml

Modified: servicemix/smx4/specs/trunk/locator/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/specs/trunk/locator/pom.xml?rev=667436&r1=667435&r2=667436&view=diff
==============================================================================
--- servicemix/smx4/specs/trunk/locator/pom.xml (original)
+++ servicemix/smx4/specs/trunk/locator/pom.xml Fri Jun 13 02:22:35 2008
@@ -60,4 +60,47 @@
         </servicemix.osgi.private.pkg>
     </properties>
 
+    <profiles>
+        <profile>
+            <id>deploy</id>
+            <properties>
+                <createSourcesJar>true</createSourcesJar>
+            </properties>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>package</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <configuration>
+                            <minmemory>128m</minmemory>
+                            <maxmemory>512m</maxmemory>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
 </project>