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/09/03 22:37:36 UTC

svn commit: r691760 - /servicemix/smx4/specs/trunk/jbi-api-1.0/pom.xml

Author: gnodet
Date: Wed Sep  3 13:37:36 2008
New Revision: 691760

URL: http://svn.apache.org/viewvc?rev=691760&view=rev
Log:
Add source and javadoc generation for the JBI API

Modified:
    servicemix/smx4/specs/trunk/jbi-api-1.0/pom.xml

Modified: servicemix/smx4/specs/trunk/jbi-api-1.0/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/specs/trunk/jbi-api-1.0/pom.xml?rev=691760&r1=691759&r2=691760&view=diff
==============================================================================
--- servicemix/smx4/specs/trunk/jbi-api-1.0/pom.xml (original)
+++ servicemix/smx4/specs/trunk/jbi-api-1.0/pom.xml Wed Sep  3 13:37:36 2008
@@ -60,4 +60,38 @@
         </plugins>
     </build>
 
+    <profiles>
+        <profile>
+            <id>deploy</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-javadocs</id>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+            
 </project>