You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dw...@apache.org on 2010/08/11 20:05:07 UTC

svn commit: r984499 - /geronimo/tck/branches/3.0/pom.xml

Author: dwoods
Date: Wed Aug 11 18:05:07 2010
New Revision: 984499

URL: http://svn.apache.org/viewvc?rev=984499&view=rev
Log:
add geronimo assembly definitions so we can download and extract a server under the target dir for tck runners

Modified:
    geronimo/tck/branches/3.0/pom.xml

Modified: geronimo/tck/branches/3.0/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/tck/branches/3.0/pom.xml?rev=984499&r1=984498&r2=984499&view=diff
==============================================================================
--- geronimo/tck/branches/3.0/pom.xml (original)
+++ geronimo/tck/branches/3.0/pom.xml Wed Aug 11 18:05:07 2010
@@ -80,4 +80,75 @@
         <module>stax-tck-runner</module>
     </modules>
 
+    <build>
+        <pluginManagement>
+            <plugins>
+                <!--
+                     we have to override the assembly names here, as we have
+                     to pass the created directory to the tck runners 
+                -->
+                <plugin>
+                    <groupId>org.apache.geronimo.buildsupport</groupId>
+                    <artifactId>geronimo-maven-plugin</artifactId>
+                    <version>${geronimoVersion}</version>
+                    <configuration>
+                        <assemblies>
+                            <assembly>
+                                <id>jetty8-javaee6</id>
+                                <groupId>org.apache.geronimo.assemblies</groupId>
+                                <artifactId>geronimo-jetty8-javaee6</artifactId>
+                                <version>${geronimoVersion}</version>
+                                <classifier>bin</classifier>
+                                <type>zip</type>
+                            </assembly>
+                            <assembly>
+                                <id>jetty8-javaee6-web</id>
+                                <groupId>org.apache.geronimo.assemblies</groupId>
+                                <artifactId>geronimo-jetty8-javaee6-web</artifactId>
+                                <version>${geronimoVersion}</version>
+                                <classifier>bin</classifier>
+                                <type>zip</type>
+                            </assembly>
+                            <assembly>
+                                <id>tomcat7-javaee6</id>
+                                <groupId>org.apache.geronimo.assemblies</groupId>
+                                <artifactId>geronimo-tomcat7-javaee6</artifactId>
+                                <version>${geronimoVersion}</version>
+                                <classifier>bin</classifier>
+                                <type>zip</type>
+                            </assembly>
+                            <assembly>
+                                <id>tomcat7-javaee6-web</id>
+                                <groupId>org.apache.geronimo.assemblies</groupId>
+                                <artifactId>geronimo-tomcat7-javaee6-web</artifactId>
+                                <version>${geronimoVersion}</version>
+                                <classifier>bin</classifier>
+                                <type>zip</type>
+                            </assembly>
+                        </assemblies>
+
+                        <defaultAssemblyId>jetty8-javaee6</defaultAssemblyId>
+
+                        <optionSets>
+                            <optionSet>
+                                <id>morememory</id>
+                                <options>
+                                    <option>-Xmx1024m</option>
+                                    <option>-XX:MaxPermSize=256m</option>
+                                </options>
+                            </optionSet>
+
+                            <optionSet>
+                                <id>debug</id>
+                                <options>
+                                    <option>-Xdebug</option>
+                                    <option>-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n</option>
+                                </options>
+                            </optionSet>
+                        </optionSets>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
 </project>