You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ga...@apache.org on 2009/12/28 23:48:28 UTC

svn commit: r894261 - in /incubator/aries/trunk/jmx: jmx-api/pom.xml jmx-blueprint-api/pom.xml jmx-blueprint-bundle/pom.xml jmx-blueprint-core/pom.xml jmx-bundle/pom.xml jmx-core/pom.xml

Author: gawor
Date: Mon Dec 28 22:48:27 2009
New Revision: 894261

URL: http://svn.apache.org/viewvc?rev=894261&view=rev
Log:
ARIES-95, ARIES-96: Attach source to bundles. Patch from Rex Wang

Modified:
    incubator/aries/trunk/jmx/jmx-api/pom.xml
    incubator/aries/trunk/jmx/jmx-blueprint-api/pom.xml
    incubator/aries/trunk/jmx/jmx-blueprint-bundle/pom.xml
    incubator/aries/trunk/jmx/jmx-blueprint-core/pom.xml
    incubator/aries/trunk/jmx/jmx-bundle/pom.xml
    incubator/aries/trunk/jmx/jmx-core/pom.xml

Modified: incubator/aries/trunk/jmx/jmx-api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-api/pom.xml?rev=894261&r1=894260&r2=894261&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/jmx-api/pom.xml (original)
+++ incubator/aries/trunk/jmx/jmx-api/pom.xml Mon Dec 28 22:48:27 2009
@@ -55,4 +55,27 @@
             </plugin>
         </plugins>
     </build>
+    
+    <profiles>
+        <profile>
+            <id>deploy</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <phase>process-classes</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>

Modified: incubator/aries/trunk/jmx/jmx-blueprint-api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-blueprint-api/pom.xml?rev=894261&r1=894260&r2=894261&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/jmx-blueprint-api/pom.xml (original)
+++ incubator/aries/trunk/jmx/jmx-blueprint-api/pom.xml Mon Dec 28 22:48:27 2009
@@ -49,4 +49,27 @@
             </plugin>
         </plugins>
     </build>
+    
+    <profiles>
+        <profile>
+            <id>deploy</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <phase>process-classes</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>

Modified: incubator/aries/trunk/jmx/jmx-blueprint-bundle/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-blueprint-bundle/pom.xml?rev=894261&r1=894260&r2=894261&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/jmx-blueprint-bundle/pom.xml (original)
+++ incubator/aries/trunk/jmx/jmx-blueprint-bundle/pom.xml Mon Dec 28 22:48:27 2009
@@ -135,12 +135,12 @@
                                     <artifactItems>
                                         <artifactItem>
                                             <groupId>org.apache.aries.jmx</groupId>
-                                            <artifactId>aries-jmx-api</artifactId>
+                                            <artifactId>org.apache.aries.jmx.blueprint.api</artifactId>
                                             <classifier>sources</classifier>
                                         </artifactItem>
                                         <artifactItem>
                                             <groupId>org.apache.aries.jmx</groupId>
-                                            <artifactId>aries-jmx-core</artifactId>
+                                            <artifactId>org.apache.aries.jmx.blueprint.core</artifactId>
                                             <classifier>sources</classifier>
                                         </artifactItem>
                                     </artifactItems>

Modified: incubator/aries/trunk/jmx/jmx-blueprint-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-blueprint-core/pom.xml?rev=894261&r1=894260&r2=894261&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/jmx-blueprint-core/pom.xml (original)
+++ incubator/aries/trunk/jmx/jmx-blueprint-core/pom.xml Mon Dec 28 22:48:27 2009
@@ -86,4 +86,26 @@
         </plugins>
     </build>
 
+    <profiles>
+        <profile>
+            <id>deploy</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <phase>process-classes</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>

Modified: incubator/aries/trunk/jmx/jmx-bundle/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-bundle/pom.xml?rev=894261&r1=894260&r2=894261&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/jmx-bundle/pom.xml (original)
+++ incubator/aries/trunk/jmx/jmx-bundle/pom.xml Mon Dec 28 22:48:27 2009
@@ -143,12 +143,12 @@
                                     <artifactItems>
                                         <artifactItem>
                                             <groupId>org.apache.aries.jmx</groupId>
-                                            <artifactId>aries-jmx-api</artifactId>
+                                            <artifactId>org.apache.aries.jmx.api</artifactId>
                                             <classifier>sources</classifier>
                                         </artifactItem>
                                         <artifactItem>
                                             <groupId>org.apache.aries.jmx</groupId>
-                                            <artifactId>aries-jmx-core</artifactId>
+                                            <artifactId>org.apache.aries.jmx.core</artifactId>
                                             <classifier>sources</classifier>
                                         </artifactItem>
                                     </artifactItems>

Modified: incubator/aries/trunk/jmx/jmx-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-core/pom.xml?rev=894261&r1=894260&r2=894261&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/jmx-core/pom.xml (original)
+++ incubator/aries/trunk/jmx/jmx-core/pom.xml Mon Dec 28 22:48:27 2009
@@ -91,5 +91,27 @@
             </plugin>
         </plugins>
     </build>
-
+    
+    <profiles>
+        <profile>
+            <id>deploy</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <phase>process-classes</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>