You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2006/08/21 02:00:22 UTC

svn commit: r433087 - /tapestry/tapestry5/tapestry-core/trunk/pom.xml

Author: hlship
Date: Sun Aug 20 17:00:16 2006
New Revision: 433087

URL: http://svn.apache.org/viewvc?rev=433087&view=rev
Log:
Tweak a number of settings to get the Surefire report to generate.

Modified:
    tapestry/tapestry5/tapestry-core/trunk/pom.xml

Modified: tapestry/tapestry5/tapestry-core/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-core/trunk/pom.xml?rev=433087&r1=433086&r2=433087&view=diff
==============================================================================
--- tapestry/tapestry5/tapestry-core/trunk/pom.xml (original)
+++ tapestry/tapestry5/tapestry-core/trunk/pom.xml Sun Aug 20 17:00:16 2006
@@ -64,22 +64,21 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.2</version>
                 <configuration>
                     <suiteXmlFiles>
                         <suiteXmlFile>src/test/conf/testng.xml</suiteXmlFile>
                     </suiteXmlFiles>
                 </configuration>
             </plugin>
-            <plugin>
+             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
+                <!-- Version 2.1-SNAPSHOT barfs on the manifest stuff. -->
+                <version>2.0</version>
                 <configuration>
-                    <archive>
+                    <archive> 
                         <manifestEntries>
-                            <Tapestry-Module-Classes>
-                                <!-- tapestry.ioc module is provided in code -->
-                                <!-- Many other modules via @SubModule --> org.apache.tapestry.services.TapestryModule
+                            <Tapestry-Module-Classes> org.apache.tapestry.services.TapestryModule
                             </Tapestry-Module-Classes>
                         </manifestEntries>
                     </archive>
@@ -113,7 +112,8 @@
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <!-- Had a classloader problem with version 2.0.3 -->
                 <!--        <version>2.0</version> -->
-                <configuration> <!--
+                <configuration>
+                    <!--
                     <tags>
                         <tag>
                             <name>todo</name>
@@ -136,6 +136,11 @@
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>cobertura-maven-plugin</artifactId>
             </plugin> -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+                <!--   <version>2.8-SNAPSHOT</version> -->
+            </plugin>
         </plugins>
     </reporting>
     <distributionManagement>
@@ -143,19 +148,5 @@
             <id>tapestry</id>
             <url>scpexe://apache.org/www/tapestry.apache.org/tapestry5</url>
         </site>
-        <repository>
-            <id>tapestry-repo</id>
-            <url>scp://apache.org/www/www.apache.org/dist/maven-repository</url>
-        </repository>
-        <snapshotRepository>
-            <id>tapestry-snapshot-repo</id>
-            <url>scp://apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
-        </snapshotRepository>
     </distributionManagement>
-    <repositories>
-        <repository>
-            <id>apache.snapshots</id>
-            <url>http://cvs.apache.org/maven-snapshot-repository</url>
-        </repository>
-    </repositories>
 </project>