You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2008/09/11 18:42:48 UTC

svn commit: r694344 - in /geronimo/gshell/trunk: gshell-rapture/pom.xml pom.xml

Author: jdillon
Date: Thu Sep 11 09:42:43 2008
New Revision: 694344

URL: http://svn.apache.org/viewvc?rev=694344&view=rev
Log:
Move plexus muck to rapture

Modified:
    geronimo/gshell/trunk/gshell-rapture/pom.xml
    geronimo/gshell/trunk/pom.xml

Modified: geronimo/gshell/trunk/gshell-rapture/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-rapture/pom.xml?rev=694344&r1=694343&r2=694344&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-rapture/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-rapture/pom.xml Thu Sep 11 09:42:43 2008
@@ -43,5 +43,44 @@
 		<module>gshell-rapture-bootstrap</module>
 		<module>gshell-rapture-core</module>
 	</modules>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.plexus</groupId>
+                <artifactId>plexus-maven-plugin</artifactId>
+                <configuration>
+                    <extractors>
+                        <classComponentDescriptorExtractor>
+                            <gleaner implementation="org.codehaus.plexus.cdc.gleaner.AnnotationComponentGleaner"/>
+                        </classComponentDescriptorExtractor>
+                    </extractors>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>process-classes</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>descriptor</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>process-test-classes</id>
+                        <phase>process-test-classes</phase>
+                        <goals>
+                            <goal>test-descriptor</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.codehaus.plexus</groupId>
+                        <artifactId>plexus-cdc-anno</artifactId>
+                        <version>1.0-alpha-1</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+        </plugins>
+    </build>
 
 </project>

Modified: geronimo/gshell/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/pom.xml?rev=694344&r1=694343&r2=694344&view=diff
==============================================================================
--- geronimo/gshell/trunk/pom.xml (original)
+++ geronimo/gshell/trunk/pom.xml Thu Sep 11 09:42:43 2008
@@ -671,45 +671,6 @@
                 </plugin>
             </plugins>
         </pluginManagement>
-
-        <!--
-        <plugins>
-            <plugin>
-                <groupId>org.codehaus.plexus</groupId>
-                <artifactId>plexus-maven-plugin</artifactId>
-                <configuration>
-                    <extractors>
-                        <classComponentDescriptorExtractor>
-                            <gleaner implementation="org.codehaus.plexus.cdc.gleaner.AnnotationComponentGleaner"/>
-                        </classComponentDescriptorExtractor>
-                    </extractors>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>process-classes</id>
-                        <phase>process-classes</phase>
-                        <goals>
-                            <goal>descriptor</goal>
-                        </goals>
-                    </execution>
-                    <execution>
-                        <id>process-test-classes</id>
-                        <phase>process-test-classes</phase>
-                        <goals>
-                            <goal>test-descriptor</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <dependencies>
-                    <dependency>
-                        <groupId>org.codehaus.plexus</groupId>
-                        <artifactId>plexus-cdc-anno</artifactId>
-                        <version>1.0-alpha-1</version>
-                    </dependency>
-                </dependencies>
-            </plugin>
-        </plugins>
-        -->
     </build>
 
     <profiles>