Revision: 469
Author:   henryju
Date:     2006-06-02 08:48:50 -0700 (Fri, 02 Jun 2006)
ViewCVS:  http://svn.sourceforge.net/jwebunit/?rev=469&view=rev

Log Message:
-----------
Add findbugs report
Fix site
Temporary use snapshots repository because of missing functionality in some 
plugin releases

Modified Paths:
--------------
    trunk/pom.xml

Added Paths:
-----------
    trunk/jwebunit-commons-tests/src/site/
    trunk/jwebunit-commons-tests/src/site/site.xml
    trunk/jwebunit-commons-tests/src/site/xdoc/
    trunk/jwebunit-core/src/site/
    trunk/jwebunit-core/src/site/site.xml
    trunk/jwebunit-core/src/site/xdoc/
Added: trunk/jwebunit-commons-tests/src/site/site.xml
===================================================================
--- trunk/jwebunit-commons-tests/src/site/site.xml                              
(rev 0)
+++ trunk/jwebunit-commons-tests/src/site/site.xml      2006-06-02 15:48:50 UTC 
(rev 469)
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+<project name="jWebUnit">
+    <body>
+        <menu ref="parent" />
+        <menu name="Sourceforge">
+            <item name="Project page"
+                href="http://sourceforge.net/projects/jwebunit"; />
+            <item name="Download"
+                href="http://sourceforge.net/projects/jwebunit/files"; />
+        </menu>
+        <menu ref="reports" />
+    </body>
+</project>

Added: trunk/jwebunit-core/src/site/site.xml
===================================================================
--- trunk/jwebunit-core/src/site/site.xml                               (rev 0)
+++ trunk/jwebunit-core/src/site/site.xml       2006-06-02 15:48:50 UTC (rev 
469)
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+<project name="jWebUnit">
+    <body>
+        <menu ref="parent" />
+        <menu name="Sourceforge">
+            <item name="Project page"
+                href="http://sourceforge.net/projects/jwebunit"; />
+            <item name="Download"
+                href="http://sourceforge.net/projects/jwebunit/files"; />
+        </menu>
+        <menu ref="reports" />
+    </body>
+</project>

Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml       2006-06-02 15:46:38 UTC (rev 468)
+++ trunk/pom.xml       2006-06-02 15:48:50 UTC (rev 469)
@@ -180,9 +180,32 @@
     <properties>
         <topDirectoryLocation>.</topDirectoryLocation>
     </properties>
+    <pluginRepositories>
+        <pluginRepository>
+            <id>Maven CodeHaus Snapshots</id>
+            <url>http://snapshots.maven.codehaus.org/maven2</url>
+            <releases>
+               <updatePolicy>daily</updatePolicy>
+            </releases>
+            <snapshots>
+                <updatePolicy>daily</updatePolicy>
+            </snapshots>
+        </pluginRepository>
+        <pluginRepository>
+            <id>Maven Snapshots</id>
+            <url>http://people.apache.org/maven-snapshot-repository/</url>
+            <releases>
+               <updatePolicy>daily</updatePolicy>
+            </releases>
+            <snapshots>
+                <updatePolicy>daily</updatePolicy>
+            </snapshots>
+        </pluginRepository>
+    </pluginRepositories>
     <reporting>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <configuration>
                     <configLocation>
@@ -194,10 +217,14 @@
                     <xrefLocation>xref</xrefLocation>
                 </configuration>
             </plugin>
-            <!--plugin>
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-surefire-report-plugin</artifactId>
+            </plugin>
+            <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>jdepend-maven-plugin</artifactId>
-            </plugin-->
+                </plugin>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>taglist-maven-plugin</artifactId>
@@ -213,18 +240,22 @@
             </plugin>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
-                <artifactId>changelog-maven-plugin</artifactId>
+                <artifactId>findbugs-maven-plugin</artifactId>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changelog-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
                     <aggregate>true</aggregate>
                 </configuration>
             </plugin>
             <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>jxr-maven-plugin</artifactId>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jxr-plugin</artifactId>
                 <configuration>
                     <aggregate>true</aggregate>
                 </configuration>
@@ -253,9 +284,27 @@
             <id>jwebunit-website</id>
             <name>jWebUnit WebSite - Sourceforge</name>
             <url>
-              
<!--scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs-->
-                file:///home/julien/temp-jwebunit
+              scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs
+                <!--file://c:\temp-jwebunit-->
             </url>
         </site>
+        <repository>
+            <id>jwebunit-repository</id>
+            <url>
+                
scpexe://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo
+            </url>
+            <name>
+                jWebUnit Maven 2 Repository
+            </name>
+        </repository>
+        <snapshotRepository>
+            <id>jwebunit-snapshots-repository</id>
+            <url>
+                
scpexe://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo-snapshots
+            </url>
+            <name>
+                jWebUnit Maven 2 Snapshots Repository
+            </name>
+        </snapshotRepository>
     </distributionManagement>
 </project>


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to