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 2007/10/01 08:48:10 UTC

svn commit: r580865 - in /geronimo/server/trunk/modules/geronimo-commands: pom.xml src/main/resources/META-INF/

Author: jdillon
Date: Sun Sep 30 23:48:09 2007
New Revision: 580865

URL: http://svn.apache.org/viewvc?rev=580865&view=rev
Log:
Update to use latest plexus and gshell maven plugins to generate commands.xml and components.xml... yay

Removed:
    geronimo/server/trunk/modules/geronimo-commands/src/main/resources/META-INF/
Modified:
    geronimo/server/trunk/modules/geronimo-commands/pom.xml

Modified: geronimo/server/trunk/modules/geronimo-commands/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-commands/pom.xml?rev=580865&r1=580864&r2=580865&view=diff
==============================================================================
--- geronimo/server/trunk/modules/geronimo-commands/pom.xml (original)
+++ geronimo/server/trunk/modules/geronimo-commands/pom.xml Sun Sep 30 23:48:09 2007
@@ -91,11 +91,14 @@
             <plugins>
                 <plugin>
                     <groupId>org.codehaus.plexus</groupId>
-                    <artifactId>plexus-java5-maven-plugin</artifactId>
-                    <version>1.0-SNAPSHOT</version>
-                    <configuration>
-                        <outputDirectory>${project.build.outputDirectory}</outputDirectory>
-                    </configuration>
+                    <artifactId>plexus-maven-plugin</artifactId>
+                    <version>1.3.6-SNAPSHOT</version>
+                </plugin>
+
+                <plugin>
+                    <groupId>org.apache.geronimo.gshell</groupId>
+                    <artifactId>gshell-maven-plugin</artifactId>
+                    <version>1.0-alpha-1-SNAPSHOT</version>
                 </plugin>
             </plugins>
         </pluginManagement>
@@ -115,12 +118,38 @@
             
             <plugin>
                 <groupId>org.codehaus.plexus</groupId>
-                <artifactId>plexus-java5-maven-plugin</artifactId>
+                <artifactId>plexus-maven-plugin</artifactId>
                 <executions>
                     <execution>
                         <phase>process-classes</phase>
                         <goals>
                             <goal>descriptor</goal>
+                        </goals>
+                        <configuration>
+                            <extractors>
+                                <classComponentDescriptorExtractor>
+                                    <gleaner implementation="org.codehaus.plexus.cdc.gleaner.AnnotationComponentGleaner"/>
+                                </classComponentDescriptorExtractor>
+                            </extractors>
+                        </configuration>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.codehaus.plexus</groupId>
+                        <artifactId>plexus-cdc-anno</artifactId>
+                        <version>1.0-alpha-1-SNAPSHOT</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.geronimo.gshell</groupId>
+                <artifactId>gshell-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>commands-descriptor</goal>
                         </goals>
                     </execution>
                 </executions>