Thread: [JWebUnit-development] SF.net SVN: jwebunit:[776] trunk/pom.xml
Brought to you by:
henryju
|
From: <he...@us...> - 2008-12-07 19:30:57
|
Revision: 776
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=776&view=rev
Author: henryju
Date: 2008-12-07 19:30:41 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
Updated plugins versions and some dependencies.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2008-11-30 23:54:23 UTC (rev 775)
+++ trunk/pom.xml 2008-12-07 19:30:41 UTC (rev 776)
@@ -213,6 +213,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
+ <version>2.0-beta-8</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
@@ -271,7 +272,7 @@
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
- <version>6.1.9</version>
+ <version>6.1.12</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
@@ -281,7 +282,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>1.3.1</version>
+ <version>1.4</version>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
@@ -439,6 +440,7 @@
<xrefLocation>
${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
</xrefLocation>
+ <targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<plugin>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2008-12-12 18:12:04
|
Revision: 784
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=784&view=rev
Author: henryju
Date: 2008-12-12 18:11:57 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
[2352559,2367400] Updated Javadoc configuration and used latest SNAPSHOT of maven Javadoc plugin to fix issue with WebTestCase javadoc generation.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2008-12-11 08:24:30 UTC (rev 783)
+++ trunk/pom.xml 2008-12-12 18:11:57 UTC (rev 784)
@@ -262,6 +262,7 @@
</build>
<properties>
<topDirectoryLocation>.</topDirectoryLocation>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
@@ -378,59 +379,53 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <aggregate>true</aggregate>
- <excludePackageNames>
- net.sourceforge.jwebunit.javacc:net.sourceforge.jwebunit.tests
- </excludePackageNames>
- <links>
- <link>
- http://java.sun.com/j2se/1.4.2/docs/api
- </link>
- <link>
- http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/
- </link>
- <link>
- http://jakarta.apache.org/commons/dbcp/apidocs/
- </link>
- <link>
- http://jakarta.apache.org/commons/fileupload/apidocs/
- </link>
- <link>
- http://jakarta.apache.org/commons/httpclient/apidocs/
- </link>
- <link>
- http://jakarta.apache.org/commons/logging/apidocs/
- </link>
- <link>
- http://jakarta.apache.org/commons/pool/apidocs/
- </link>
- <link>http://www.junit.org/junit/javadoc/</link>
- <link>
- http://logging.apache.org/log4j/docs/api/
- </link>
- <link>
- http://jakarta.apache.org/regexp/apidocs/
- </link>
- <link>
- http://htmlunit.sourceforge.net/apidocs/
- </link>
- </links>
- <groups>
- <group>
- <title>User Packages</title>
- <packages>
- net.sourceforge.jwebunit.junit*:net.sourceforge.jwebunit.exception*:net.sourceforge.jwebunit.html*:net.sourceforge.jwebunit.javascript*:net.sourceforge.jwebunit.util*
- </packages>
- </group>
- <group>
- <title>Developer Packages</title>
- <packages>
- net.sourceforge.jwebunit.api*:net.sourceforge.jwebunit.htmlunit*
- </packages>
- </group>
- </groups>
- </configuration>
+ <version>2.5.1-SNAPSHOT</version>
+ <reportSets>
+ <reportSet>
+ <id>aggregate</id>
+ <configuration>
+ <excludePackageNames>
+ net.sourceforge.jwebunit.javacc:net.sourceforge.jwebunit.tests
+ </excludePackageNames>
+ <links>
+ <link>
+ http://java.sun.com/j2se/1.5.0/docs/api/
+ </link>
+ <link>
+ http://hc.apache.org/httpclient-3.x/apidocs/
+ </link>
+ <link>http://junit.sourceforge.net/junit3.8.1/javadoc/</link>
+ <link>
+ http://htmlunit.sourceforge.net/apidocs/
+ </link>
+ <link>http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/</link>
+ </links>
+ <groups>
+ <group>
+ <title>Core Packages</title>
+ <packages>
+ net.sourceforge.jwebunit.api*:net.sourceforge.jwebunit.junit*:net.sourceforge.jwebunit.exception*:net.sourceforge.jwebunit.html*:net.sourceforge.jwebunit.javascript*:net.sourceforge.jwebunit.util*
+ </packages>
+ </group>
+ <group>
+ <title>HtmlUnit Packages</title>
+ <packages>
+ net.sourceforge.jwebunit.htmlunit*
+ </packages>
+ </group>
+ <group>
+ <title>Selenium Packages</title>
+ <packages>
+ net.sourceforge.jwebunit.selenium*
+ </packages>
+ </group>
+ </groups>
+ </configuration>
+ <reports>
+ <report>aggregate</report>
+ </reports>
+ </reportSet>
+ </reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -482,14 +477,14 @@
<repository>
<id>jwebunit-m2-repo</id>
<url>
- sftp://web.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo
+ scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo
</url>
<name>JWebUnit Maven 2 Repository</name>
</repository>
<snapshotRepository>
<id>jwebunit-m2-repo-snapshots</id>
<url>
- sftp://web.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo-snapshots
+ scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo-snapshots
</url>
<name>JWebUnit Maven 2 Snapshots Repository</name>
</snapshotRepository>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2008-12-12 18:23:07
|
Revision: 785
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=785&view=rev
Author: henryju
Date: 2008-12-12 18:23:03 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
Used a released version because maven-release-plugin can't tolerate SNAPSHOT.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2008-12-12 18:11:57 UTC (rev 784)
+++ trunk/pom.xml 2008-12-12 18:23:03 UTC (rev 785)
@@ -379,7 +379,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.5.1-SNAPSHOT</version>
+ <version>2.5.0</version>
<reportSets>
<reportSet>
<id>aggregate</id>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2009-01-14 08:08:50
|
Revision: 793
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=793&view=rev
Author: henryju
Date: 2009-01-14 08:08:40 +0000 (Wed, 14 Jan 2009)
Log Message:
-----------
[2505326] Fixed pom grammar. BTW not sure the optional keyword works in dependencyManagement section...
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2009-01-04 21:53:48 UTC (rev 792)
+++ trunk/pom.xml 2009-01-14 08:08:40 UTC (rev 793)
@@ -320,7 +320,7 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.0</version>
- <scope>optional</scope>
+ <optional>true</optional>
</dependency>
</dependencies>
</dependencyManagement>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2009-05-21 19:52:34
|
Revision: 807
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=807&view=rev
Author: henryju
Date: 2009-05-21 19:52:25 +0000 (Thu, 21 May 2009)
Log Message:
-----------
[2794825] Updated mailing lists infos. Thanks to Umkhulubaas for reporting.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2009-05-15 08:32:19 UTC (rev 806)
+++ trunk/pom.xml 2009-05-21 19:52:25 UTC (rev 807)
@@ -30,26 +30,26 @@
<mailingList>
<name>JWebUnit Development Mailing list</name>
<subscribe>
- http://lists.sourceforge.net/mailman/listinfo/jwebunit-development
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-development
</subscribe>
<unsubscribe>
- http://lists.sourceforge.net/mailman/listinfo/jwebunit-development
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-development
</unsubscribe>
<archive>
- http://sourceforge.net/mailarchive/forum.php?forum_id=40831
+ http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-development
</archive>
<post>jwe...@li...</post>
</mailingList>
<mailingList>
<name>JWebUnit User Mailing list</name>
<subscribe>
- http://lists.sourceforge.net/mailman/listinfo/jwebunit-users
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-users
</subscribe>
<unsubscribe>
- http://lists.sourceforge.net/mailman/listinfo/jwebunit-users
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-users
</unsubscribe>
<archive>
- http://sourceforge.net/mailarchive/forum.php?forum_id=40830
+ http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-users
</archive>
<post>jwe...@li...</post>
</mailingList>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-07-04 15:33:23
|
Revision: 839
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=839&view=rev
Author: henryju
Date: 2010-07-04 15:33:16 +0000 (Sun, 04 Jul 2010)
Log Message:
-----------
Updated some reporting plugins.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-06-14 01:34:03 UTC (rev 838)
+++ trunk/pom.xml 2010-07-04 15:33:16 UTC (rev 839)
@@ -401,7 +401,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.4</version>
+ <version>2.5</version>
<configuration>
<configLocation>
${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
@@ -443,12 +443,12 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3</version>
+ <version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.5</version>
+ <version>2.6.1</version>
<reportSets>
<reportSet>
<id>aggregate</id>
@@ -523,7 +523,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.1.2</version>
+ <version>2.2</version>
<reportSets>
<reportSet>
<reports>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-05 12:00:07
|
Revision: 849
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=849&view=rev
Author: henryju
Date: 2010-10-05 11:59:59 +0000 (Tue, 05 Oct 2010)
Log Message:
-----------
Updated Maven plugins & pom configuration.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-05 11:48:08 UTC (rev 848)
+++ trunk/pom.xml 2010-10-05 11:59:59 UTC (rev 849)
@@ -1,256 +1,285 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>net.sourceforge.jwebunit</groupId>
- <artifactId>jwebunit</artifactId>
- <name>JWebUnit</name>
- <version>2.5-SNAPSHOT</version>
- <packaging>pom</packaging>
- <description>
- JWebUnit is a Java framework that facilitates creation of
- acceptance tests for web applications. It evolved from a project
- where we were using HttpUnit and JUnit to create acceptance
- tests. As the tests were being written, they were continuously
- refactored to remove duplication and other bad smells in the
- test code. JWebUnit is the result of these refactorings.
- </description>
- <url>http://jwebunit.sourceforge.net</url>
- <issueManagement>
- <system>sourceforge</system>
- <url>http://sourceforge.net/tracker/?group_id=61302</url>
- </issueManagement>
- <inceptionYear>2002</inceptionYear>
- <modules>
- <module>jwebunit-webtestcase-generator</module>
- <module>jwebunit-core</module>
- <module>jwebunit-commons-tests</module>
- <module>jwebunit-htmlunit-plugin</module>
- <module>jwebunit-selenium-plugin</module>
- </modules>
- <mailingLists>
- <mailingList>
- <name>JWebUnit Development Mailing list</name>
- <subscribe>
- http://lists.sourceforge.net/lists/listinfo/jwebunit-development
- </subscribe>
- <unsubscribe>
- http://lists.sourceforge.net/lists/listinfo/jwebunit-development
- </unsubscribe>
- <archive>
- http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-development
- </archive>
- <post>jwe...@li...</post>
- </mailingList>
- <mailingList>
- <name>JWebUnit User Mailing list</name>
- <subscribe>
- http://lists.sourceforge.net/lists/listinfo/jwebunit-users
- </subscribe>
- <unsubscribe>
- http://lists.sourceforge.net/lists/listinfo/jwebunit-users
- </unsubscribe>
- <archive>
- http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-users
- </archive>
- <post>jwe...@li...</post>
- </mailingList>
- </mailingLists>
- <developers>
- <developer>
- <id>henryju</id>
- <name>Julien Henry</name>
- <email>henryju at users.sourceforge.net</email>
- <url />
- <organization>Capgemini</organization>
- <organizationUrl>http://www.capgemini.com</organizationUrl>
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>+2</timezone>
- </developer>
- <developer>
- <id>joshlane</id>
- <name>Josh Lane</name>
- <email>joshlane at users.sourceforge.net</email>
- <url />
- <organization>Brontes Technologies</organization>
- <organizationUrl>
- http://solutions.3m.com/wps/portal/3M/en_US/LavaCOS/3MESPE-LavaCOS/
- </organizationUrl>
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>-5</timezone>
- </developer>
- <developer>
- <id>jevonwright</id>
- <name>Jevon Wright</name>
- <email>jevonwright at users.sourceforge.net</email>
- <url>http://www.jevon.org</url>
- <organization />
- <organizationUrl />
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>+13</timezone>
- </developer>
- </developers>
- <contributors>
- <contributor>
- <name>Jim Weaver</name>
- <email>jimweaver at users.sourceforge.net</email>
- <organization>Thoughtworks</organization>
- <roles>
- <role>All-Hands person</role>
- </roles>
- <timezone>-5</timezone>
- </contributor>
- <contributor>
- <name>Wilkes Joiner</name>
- <email>wilkesj at users.sourceforge.net</email>
- <organization />
- <roles>
- <role>All-Hands person</role>
- </roles>
- </contributor>
- <contributor>
- <name>Vivek Venugopalan</name>
- <email>vivek at magic hypen cauldron dot com</email>
- <url>http://www.magic-cauldron.com</url>
- <organization />
- <roles>
- <role>All-Hands person</role>
- </roles>
- <timezone>+5.5</timezone>
- </contributor>
- <contributor>
- <name>Martijn Dashorst</name>
- <email>dashorst at users.sourceforge.net</email>
- <url>http://www.dashorst.dds.nl</url>
- <organization>Topicus B.V.</organization>
- <roles>
- <role>All-Hands person</role>
- </roles>
- <timezone>+1</timezone>
- </contributor>
- <contributor>
- <name>Nicholas Neuberger</name>
- <email>nneuberger at users.sourceforge.net</email>
- <url />
- <organization>Sunshine Solar</organization>
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>-6</timezone>
- </contributor>
- <contributor>
- <name>Jon Frisby</name>
- <email>jf...@ma...</email>
- <url />
- <organization />
- <organizationUrl />
- <roles />
- <timezone />
- <properties />
- </contributor>
- <contributor>
- <name>Fred Burlet</name>
- <email>fb...@ki...</email>
- <url />
- <organization />
- <organizationUrl />
- <roles />
- <timezone />
- <properties />
- </contributor>
- <contributor>
- <name>Mike C</name>
- <email>mtc3bmtc3b at users.sourceforge.net</email>
- <url />
- <organization />
- <organizationUrl />
- <roles />
- <timezone />
- <properties />
- </contributor>
- </contributors>
- <licenses>
- <license>
- <name>LGPL License</name>
- <url>${topDirectoryLocation}/LICENSE.txt</url>
- </license>
- </licenses>
- <scm>
- <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</connection>
- <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</developerConnection>
- <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
- </scm>
- <organization>
- <name>SourceForge</name>
- <url>http://sourceforge.net</url>
- </organization>
- <repositories>
- <repository>
- <id>selenium</id>
- <name>Selenium release repository</name>
- <url>http://nexus.openqa.org/content/repositories/releases</url>
- </repository>
- </repositories>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.2-beta-5</version>
- <configuration>
- <attach>false</attach>
- <descriptors>
- <descriptor>
- src/assemble/release.xml
- </descriptor>
- </descriptors>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- <preparationGoals>clean install</preparationGoals>
- <mavenExecutorId>forked-path</mavenExecutorId>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-toolchains-plugin</artifactId>
- <version>1.0</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>toolchain</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <toolchains>
- <jdk>
- <version>1.5</version>
- <vendor>sun</vendor>
- </jdk>
- </toolchains>
- </configuration>
- </plugin>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>net.sourceforge.jwebunit</groupId>
+ <artifactId>jwebunit</artifactId>
+ <name>JWebUnit</name>
+ <version>2.5-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <description>
+ JWebUnit is a Java framework that facilitates creation of
+ acceptance tests for web applications. It evolved from a project
+ where we were using HttpUnit and JUnit to create acceptance
+ tests. As the tests were being written, they were continuously
+ refactored to remove duplication and other bad smells in the
+ test code. JWebUnit is the result of these refactorings.
+ </description>
+ <url>http://jwebunit.sourceforge.net</url>
+ <issueManagement>
+ <system>sourceforge</system>
+ <url>http://sourceforge.net/tracker/?group_id=61302</url>
+ </issueManagement>
+ <inceptionYear>2002</inceptionYear>
+ <modules>
+ <module>jwebunit-webtestcase-generator</module>
+ <module>jwebunit-core</module>
+ <module>jwebunit-commons-tests</module>
+ <module>jwebunit-htmlunit-plugin</module>
+ <module>jwebunit-selenium-plugin</module>
+ </modules>
+ <mailingLists>
+ <mailingList>
+ <name>JWebUnit Development Mailing list</name>
+ <subscribe>
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-development
+ </subscribe>
+ <unsubscribe>
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-development
+ </unsubscribe>
+ <archive>
+ http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-development
+ </archive>
+ <post>jwe...@li...</post>
+ </mailingList>
+ <mailingList>
+ <name>JWebUnit User Mailing list</name>
+ <subscribe>
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-users
+ </subscribe>
+ <unsubscribe>
+ http://lists.sourceforge.net/lists/listinfo/jwebunit-users
+ </unsubscribe>
+ <archive>
+ http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-users
+ </archive>
+ <post>jwe...@li...</post>
+ </mailingList>
+ </mailingLists>
+ <developers>
+ <developer>
+ <id>henryju</id>
+ <name>Julien Henry</name>
+ <email>henryju at users.sourceforge.net</email>
+ <url />
+ <organization>Capgemini</organization>
+ <organizationUrl>http://www.capgemini.com</organizationUrl>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>+2</timezone>
+ </developer>
+ <developer>
+ <id>joshlane</id>
+ <name>Josh Lane</name>
+ <email>joshlane at users.sourceforge.net</email>
+ <url />
+ <organization>Brontes Technologies</organization>
+ <organizationUrl>
+ http://solutions.3m.com/wps/portal/3M/en_US/LavaCOS/3MESPE-LavaCOS/
+ </organizationUrl>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>-5</timezone>
+ </developer>
+ <developer>
+ <id>jevonwright</id>
+ <name>Jevon Wright</name>
+ <email>jevonwright at users.sourceforge.net</email>
+ <url>http://www.jevon.org</url>
+ <organization />
+ <organizationUrl />
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>+13</timezone>
+ </developer>
+ </developers>
+ <contributors>
+ <contributor>
+ <name>Jim Weaver</name>
+ <email>jimweaver at users.sourceforge.net</email>
+ <organization>Thoughtworks</organization>
+ <roles>
+ <role>All-Hands person</role>
+ </roles>
+ <timezone>-5</timezone>
+ </contributor>
+ <contributor>
+ <name>Wilkes Joiner</name>
+ <email>wilkesj at users.sourceforge.net</email>
+ <organization />
+ <roles>
+ <role>All-Hands person</role>
+ </roles>
+ </contributor>
+ <contributor>
+ <name>Vivek Venugopalan</name>
+ <email>vivek at magic hypen cauldron dot com</email>
+ <url>http://www.magic-cauldron.com</url>
+ <organization />
+ <roles>
+ <role>All-Hands person</role>
+ </roles>
+ <timezone>+5.5</timezone>
+ </contributor>
+ <contributor>
+ <name>Martijn Dashorst</name>
+ <email>dashorst at users.sourceforge.net</email>
+ <url>http://www.dashorst.dds.nl</url>
+ <organization>Topicus B.V.</organization>
+ <roles>
+ <role>All-Hands person</role>
+ </roles>
+ <timezone>+1</timezone>
+ </contributor>
+ <contributor>
+ <name>Nicholas Neuberger</name>
+ <email>nneuberger at users.sourceforge.net</email>
+ <url />
+ <organization>Sunshine Solar</organization>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>-6</timezone>
+ </contributor>
+ <contributor>
+ <name>Jon Frisby</name>
+ <email>jf...@ma...</email>
+ <url />
+ <organization />
+ <organizationUrl />
+ <roles />
+ <timezone />
+ <properties />
+ </contributor>
+ <contributor>
+ <name>Fred Burlet</name>
+ <email>fb...@ki...</email>
+ <url />
+ <organization />
+ <organizationUrl />
+ <roles />
+ <timezone />
+ <properties />
+ </contributor>
+ <contributor>
+ <name>Mike C</name>
+ <email>mtc3bmtc3b at users.sourceforge.net</email>
+ <url />
+ <organization />
+ <organizationUrl />
+ <roles />
+ <timezone />
+ <properties />
+ </contributor>
+ </contributors>
+ <licenses>
+ <license>
+ <name>LGPL License</name>
+ <url>${topDirectoryLocation}/LICENSE.txt</url>
+ </license>
+ </licenses>
+ <scm>
+ <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</connection>
+ <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</developerConnection>
+ <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
+ </scm>
+ <organization>
+ <name>SourceForge</name>
+ <url>http://sourceforge.net</url>
+ </organization>
+ <repositories>
+ <repository>
+ <id>selenium</id>
+ <name>Selenium release repository</name>
+ <url>http://nexus.openqa.org/content/repositories/releases</url>
+ </repository>
+ </repositories>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4.3</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-5</version>
+ <configuration>
+ <attach>false</attach>
+ <descriptors>
+ <descriptor>
+ src/assemble/release.xml
+ </descriptor>
+ </descriptors>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <autoVersionSubmodules>true</autoVersionSubmodules>
+ <preparationGoals>clean install</preparationGoals>
+ <mavenExecutorId>forked-path</mavenExecutorId>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>javacc-maven-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>2.1</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ <plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-toolchains-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>toolchain</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <toolchains>
+ <jdk>
+ <version>1.5</version>
+ <vendor>sun</vendor>
+ </jdk>
+ </toolchains>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.6.1</version>
@@ -279,99 +308,77 @@
</execution>
</executions>
</plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <inherited>true</inherited>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>javacc-maven-plugin</artifactId>
- <version>2.6</version>
- </plugin>
- <plugin>
- <inherited>true</inherited>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2</version>
- </plugin>
- <plugin>
- <inherited>true</inherited>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>2.1</version>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <properties>
- <topDirectoryLocation>.</topDirectoryLocation>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.2</version>
- </dependency>
- <dependency>
- <groupId>junitperf</groupId>
- <artifactId>junitperf</artifactId>
- <version>1.8</version>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty</artifactId>
- <version>6.1.12</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit</artifactId>
- <version>2.8</version>
- </dependency>
- <dependency>
- <groupId>org.seleniumhq.selenium.client-drivers</groupId>
- <artifactId>selenium-java-client-driver</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>regexp</groupId>
- <artifactId>regexp</artifactId>
- <version>1.3</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.6.1</version>
- </dependency>
+ </plugins>
+ </build>
+ <properties>
+ <topDirectoryLocation>.</topDirectoryLocation>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+ <dependencyManagement>
+ <dependencies>
<dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.2</version>
+ </dependency>
+ <dependency>
+ <groupId>junitperf</groupId>
+ <artifactId>junitperf</artifactId>
+ <version>1.8</version>
+ </dependency>
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>6.1.21</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ <version>1.2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>2.8</version>
+ </dependency>
+ <dependency>
+ <groupId>org.seleniumhq.selenium.client-drivers</groupId>
+ <artifactId>selenium-java-client-driver</artifactId>
+ <version>1.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>regexp</groupId>
+ <artifactId>regexp</artifactId>
+ <version>1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ </dependency>
+ <dependency>
<groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.6.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.6.1</version>
</dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>0.9.24</version>
- <optional>true</optional>
- </dependency>
- </dependencies>
- </dependencyManagement>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>0.9.24</version>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
<profiles>
<profile>
<id>release-sign-artifacts</id>
@@ -401,168 +408,168 @@
</build>
</profile>
</profiles>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.5</version>
- <configuration>
- <configLocation>
- ${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
- </configLocation>
- <headerLocation>
- ${basedir}/${topDirectoryLocation}/src/checkstyle/header-checkstyle.txt
- </headerLocation>
- <xrefLocation>xref</xrefLocation>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-report-plugin</artifactId>
- <version>2.4.3</version>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jdepend-maven-plugin</artifactId>
- <version>2.0-beta-2</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-changes-plugin</artifactId>
- <version>2.2</version>
- <inherited>false</inherited>
- <reportSets>
- <reportSet>
- <reports>
- <report>changes-report</report>
- </reports>
- </reportSet>
- </reportSets>
- <configuration>
- <issueLinkTemplate>
- http://sourceforge.net/support/tracker.php?aid=%ISSUE%
- </issueLinkTemplate>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.6.1</version>
- <reportSets>
- <reportSet>
- <id>aggregate</id>
- <configuration>
- <excludePackageNames>
- net.sourceforge.jwebunit.javacc:net.sourceforge.jwebunit.tests
- </excludePackageNames>
- <links>
- <link>
- http://java.sun.com/j2se/1.5.0/docs/api/
- </link>
- <link>
- http://hc.apache.org/httpclient-3.x/apidocs/
- </link>
- <link>http://junit.sourceforge.net/junit3.8.1/javadoc/</link>
- <link>
- http://htmlunit.sourceforge.net/apidocs/
- </link>
- <link>http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/</link>
- </links>
- <groups>
- <group>
- <title>Core Packages</title>
- <packages>
- net.sourceforge.jwebunit.api*:net.sourceforge.jwebunit.junit*:net.sourceforge.jwebunit.exception*:net.sourceforge.jwebunit.html*:net.sourceforge.jwebunit.javascript*:net.sourceforge.jwebunit.util*
- </packages>
- </group>
- <group>
- <title>HtmlUnit Packages</title>
- <packages>
- net.sourceforge.jwebunit.htmlunit*
- </packages>
- </group>
- <group>
- <title>Selenium Packages</title>
- <packages>
- net.sourceforge.jwebunit.selenium*
- </packages>
- </group>
- </groups>
- </configuration>
- <reports>
- <report>aggregate</report>
- </reports>
- </reportSet>
- </reportSets>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jxr-plugin</artifactId>
- <version>2.1</version>
- <configuration>
- <aggregate>true</aggregate>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- <version>2.4</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- <version>2.4</version>
- <configuration>
- <xrefLocation>
- ${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
- </xrefLocation>
- <targetJdk>1.5</targetJdk>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.2</version>
- <reportSets>
- <reportSet>
- <reports>
- <report>index</report>
- <report>dependencies</report>
- <report>project-team</report>
- <report>mailing-list</report>
- <report>license</report>
- <report>issue-tracking</report>
- <report>scm</report>
- <report>summary</report>
- </reports>
- </reportSet>
- </reportSets>
- </plugin>
- </plugins>
- </reporting>
- <distributionManagement>
- <site>
- <id>jwebunit-website</id>
- <name>JWebUnit WebSite - Sourceforge</name>
- <url>
- scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs
- </url>
- </site>
- <snapshotRepository>
- <id>sonatype-nexus</id>
- <url>http://oss.sonatype.org/content/repositories/snapshots</url>
- <name>Sonatype Nexus OSS Snapshot Repository</name>
- </snapshotRepository>
- <repository>
- <id>sonatype-nexus</id>
- <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
- <name>Sonatype Nexus OSS Staging Repository</name>
- </repository>
- </distributionManagement>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <configLocation>
+ ${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
+ </configLocation>
+ <headerLocation>
+ ${basedir}/${topDirectoryLocation}/src/checkstyle/header-checkstyle.txt
+ </headerLocation>
+ <xrefLocation>xref</xrefLocation>
+ </configuration>
+ </plugin>
+ <plugin>
+ <gro...
[truncated message content] |
|
From: <he...@us...> - 2010-10-05 14:29:37
|
Revision: 850
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=850&view=rev
Author: henryju
Date: 2010-10-05 14:29:31 +0000 (Tue, 05 Oct 2010)
Log Message:
-----------
Updated Maven configuration (especially site & reporting) to works with Maven 3.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-05 11:59:59 UTC (rev 849)
+++ trunk/pom.xml 2010-10-05 14:29:31 UTC (rev 850)
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit</artifactId>
@@ -60,8 +61,8 @@
<name>Julien Henry</name>
<email>henryju at users.sourceforge.net</email>
<url />
- <organization>Capgemini</organization>
- <organizationUrl>http://www.capgemini.com</organizationUrl>
+ <organization>SERLI</organization>
+ <organizationUrl>http://www.serli.com</organizationUrl>
<roles>
<role>Developer</role>
</roles>
@@ -198,49 +199,49 @@
<build>
<pluginManagement>
<plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.6</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.4.3</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.2-beta-5</version>
- <configuration>
- <attach>false</attach>
- <descriptors>
- <descriptor>
- src/assemble/release.xml
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4.3</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-5</version>
+ <configuration>
+ <attach>false</attach>
+ <descriptors>
+ <descriptor>
+ src/assemble/release.xml
</descriptor>
- </descriptors>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- <preparationGoals>clean install</preparationGoals>
- <mavenExecutorId>forked-path</mavenExecutorId>
- </configuration>
- </plugin>
+ </descriptors>
+ </configuration>
+ </plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <autoVersionSubmodules>true</autoVersionSubmodules>
+ <preparationGoals>clean install</preparationGoals>
+ <mavenExecutorId>forked-path</mavenExecutorId>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
<version>2.6</version>
@@ -253,8 +254,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
- <version>2.1</version>
+ <version>2.1.1</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ <configuration>
+ <quiet>true</quiet>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
@@ -296,8 +305,8 @@
<exclude>src/main/javacc/Java1.5.jj</exclude>
<exclude>src/main/javacc/Token.java</exclude>
<exclude>src/main/resources/testcases/CharsetTest/charset.html_utf-8</exclude>
- <exclude>src/main/resources/testcases/NonHtmlContentTest/text.bin</exclude>
- <exclude>src/main/resources/testcases/FramesAndWindowsTest/TopFrame.html</exclude>
+ <exclude>src/main/resources/testcases/NonHtmlContentTest/text.bin</exclude>
+ <exclude>src/main/resources/testcases/FramesAndWindowsTest/TopFrame.html</exclude>
</excludes>
</configuration>
<executions>
@@ -407,13 +416,46 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>maven-3</id>
+ <activation>
+ <file>
+ <!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
+ <exists>${basedir}</exists>
+ </file>
+ </activation>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.0-beta-2</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ <plugins>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-descriptor</id>
+ <goals>
+ <goal>attach-descriptor</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.5</version>
+ <version>2.6</version>
<configuration>
<configLocation>
${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
@@ -421,13 +463,18 @@
<headerLocation>
${basedir}/${topDirectoryLocation}/src/checkstyle/header-checkstyle.txt
</headerLocation>
- <xrefLocation>xref</xrefLocation>
+ <xrefLocation>
+ ${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
+ </xrefLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
- <version>2.4.3</version>
+ <version>2.6</version>
+ <configuration>
+ <aggregate>true</aggregate>
+ </configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
@@ -437,7 +484,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.2</version>
+ <version>2.3</version>
<inherited>false</inherited>
<reportSets>
<reportSet>
@@ -448,59 +495,48 @@
</reportSets>
<configuration>
<issueLinkTemplate>
- http://sourceforge.net/support/tracker.php?aid=%ISSUE%
- </issueLinkTemplate>
+ http://sourceforge.net/support/tracker.php?aid=%ISSUE% </issueLinkTemplate>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.1</version>
+ <configuration>
+ <xrefLocation>
+ ${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
+ </xrefLocation>
+ </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.6.1</version>
+ <version>2.7</version>
<reportSets>
<reportSet>
<id>aggregate</id>
<configuration>
- <excludePackageNames>
- net.sourceforge.jwebunit.javacc:net.sourceforge.jwebunit.tests
- </excludePackageNames>
- <links>
- <link>
- http://java.sun.com/j2se/1.5.0/docs/api/
- </link>
- <link>
- http://hc.apache.org/httpclient-3.x/apidocs/
- </link>
- <link>http://junit.sourceforge.net/junit3.8.1/javadoc/</link>
- <link>
- http://htmlunit.sourceforge.net/apidocs/
- </link>
- <link>http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/</link>
- </links>
- <groups>
- <group>
- <title>Core Packages</title>
- <packages>
- net.sourceforge.jwebunit.api*:net.sourceforge.jwebunit.junit*:net.sourceforge.jwebunit.exception*:net.sourceforge.jwebunit.html*:net.sourceforge.jwebunit.javascript*:net.sourceforge.jwebunit.util*
- </packages>
- </group>
- <group>
- <title>HtmlUnit Packages</title>
- <packages>
- net.sourceforge.jwebunit.htmlunit*
- </packages>
- </group>
- <group>
- <title>Selenium Packages</title>
- <packages>
- net.sourceforge.jwebunit.selenium*
- </packages>
- </group>
- </groups>
+ <excludePackageNames>net.sourceforge.jwebunit.javacc:net.sourceforge.jwebunit.tests</excludePackageNames>
+ <links>
+ <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
+ <link>http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/</link>
+ <link>http://kentbeck.github.com/junit/javadoc/latest/</link>
+ <link>http://htmlunit.sourceforge.net/apidocs/</link>
+ </links>
+ <groups>
+ <group>
+ <title>Core Packages</title>
+ <packages>net.sourceforge.jwebunit.api*:net.sourceforge.jwebunit.junit*:net.sourceforge.jwebunit.exception*:net.sourceforge.jwebunit.html*:net.sourceforge.jwebunit.javascript*:net.sourceforge.jwebunit.util*</packages>
+ </group>
+ <group>
+ <title>HtmlUnit Packages</title>
+ <packages>net.sourceforge.jwebunit.htmlunit*</packages>
+ </group>
+ <group>
+ <title>Selenium Packages</title>
+ <packages>net.sourceforge.jwebunit.selenium*</packages>
+ </group>
+ </groups>
</configuration>
<reports>
<report>aggregate</report>
@@ -511,7 +547,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
@@ -520,15 +556,16 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
+ <configuration>
+ <aggregate>true</aggregate>
+ </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
- <version>2.4</version>
+ <version>2.5</version>
<configuration>
- <xrefLocation>
- ${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
- </xrefLocation>
+ <aggregate>true</aggregate>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-18 09:11:37
|
Revision: 854
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=854&view=rev
Author: henryju
Date: 2010-10-18 09:11:31 +0000 (Mon, 18 Oct 2010)
Log Message:
-----------
Updated some plugins to latest version.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-18 09:08:30 UTC (rev 853)
+++ trunk/pom.xml 2010-10-18 09:11:31 UTC (rev 854)
@@ -221,7 +221,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
- <version>2.2-beta-5</version>
+ <version>2.2</version>
<configuration>
<attach>false</attach>
<descriptors>
@@ -234,7 +234,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
- <version>2.0</version>
+ <version>2.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
@@ -291,7 +291,7 @@
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
- <version>1.6.1</version>
+ <version>1.8.0</version>
<configuration>
<header>${topDirectoryLocation}/src/license/header.txt</header>
<aggregate>false</aggregate>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-19 10:02:21
|
Revision: 864
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=864&view=rev
Author: henryju
Date: 2010-10-19 10:02:15 +0000 (Tue, 19 Oct 2010)
Log Message:
-----------
Set Maven plugins versions to have reproducible build (and remove Maven 3 warning). (merge)
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-19 10:01:45 UTC (rev 863)
+++ trunk/pom.xml 2010-10-19 10:02:15 UTC (rev 864)
@@ -220,6 +220,16 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.1.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<configuration>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-19 15:21:58
|
Revision: 866
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=866&view=rev
Author: henryju
Date: 2010-10-19 15:21:52 +0000 (Tue, 19 Oct 2010)
Log Message:
-----------
Fixed licence checker warnings.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-19 10:22:03 UTC (rev 865)
+++ trunk/pom.xml 2010-10-19 15:21:52 UTC (rev 866)
@@ -306,8 +306,9 @@
<header>${topDirectoryLocation}/src/license/header.txt</header>
<aggregate>false</aggregate>
<encoding>${project.build.sourceEncoding}</encoding>
- <strictChecking>true</strictChecking>
+ <strictCheck>true</strictCheck>
<excludes>
+ <exclude>src/license/header.txt</exclude>
<exclude>LICENSE.txt</exclude>
<exclude>README.txt</exclude>
<exclude>COPYING*</exclude>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-12-22 09:30:34
|
Revision: 890
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=890&view=rev
Author: henryju
Date: 2010-12-22 09:30:28 +0000 (Wed, 22 Dec 2010)
Log Message:
-----------
Updated m-surefire-p and m-dep-info-report-p versions.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-11-29 16:19:05 UTC (rev 889)
+++ trunk/pom.xml 2010-12-22 09:30:28 UTC (rev 890)
@@ -226,7 +226,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.6</version>
+ <version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -511,7 +511,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
- <version>2.6</version>
+ <version>2.7</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
@@ -613,7 +613,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.2</version>
+ <version>2.3.1</version>
<reportSets>
<reportSet>
<reports>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2011-01-27 12:37:54
|
Revision: 891
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=891&view=rev
Author: henryju
Date: 2011-01-27 12:37:47 +0000 (Thu, 27 Jan 2011)
Log Message:
-----------
Disabled toolchains in Eclipse with M2Eclipse because of bug MNGECLIPSE-2215.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-12-22 09:30:28 UTC (rev 890)
+++ trunk/pom.xml 2011-01-27 12:37:47 UTC (rev 891)
@@ -489,6 +489,24 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>m2e</id>
+ <activation>
+ <property>
+ <name>m2e.version</name><!-- Activate only when within eclipse -->
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <!-- Set to false to work around Maven Eclipse plugin (m2e) bug MNGECLIPSE-2215 -->
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-toolchains-plugin</artifactId>
+ <inherited>false</inherited>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
<reporting>
<plugins>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2011-12-30 15:06:45
|
Revision: 934
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=934&view=rev
Author: henryju
Date: 2011-12-30 15:06:39 +0000 (Fri, 30 Dec 2011)
Log Message:
-----------
Remove toolchains as it is not portable
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2011-11-28 10:11:30 UTC (rev 933)
+++ trunk/pom.xml 2011-12-30 15:06:39 UTC (rev 934)
@@ -302,27 +302,6 @@
</pluginManagement>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-toolchains-plugin</artifactId>
- <version>1.0</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>toolchain</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <toolchains>
- <jdk>
- <version>1.5</version>
- <vendor>sun</vendor>
- </jdk>
- </toolchains>
- </configuration>
- </plugin>
- <plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
@@ -383,10 +362,15 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
- <version>4.8.2</version>
+ <version>4.10</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-core</artifactId>
+ <version>1.3.RC2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3.RC2</version>
</dependency>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2012-07-25 10:48:50
|
Revision: 938
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=938&view=rev
Author: henryju
Date: 2012-07-25 10:48:39 +0000 (Wed, 25 Jul 2012)
Log Message:
-----------
Remove selenium module (deprecated in favor of webdriver module).
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-07-25 10:47:20 UTC (rev 937)
+++ trunk/pom.xml 2012-07-25 10:48:39 UTC (rev 938)
@@ -24,7 +24,6 @@
<module>jwebunit-core</module>
<module>jwebunit-commons-tests</module>
<module>jwebunit-htmlunit-plugin</module>
- <module>jwebunit-selenium-plugin</module>
<module>jwebunit-webdriver-plugin</module>
</modules>
<mailingLists>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2012-07-25 13:10:32
|
Revision: 943
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=943&view=rev
Author: henryju
Date: 2012-07-25 13:10:22 +0000 (Wed, 25 Jul 2012)
Log Message:
-----------
Update Maven plugins.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-07-25 12:38:29 UTC (rev 942)
+++ trunk/pom.xml 2012-07-25 13:10:22 UTC (rev 943)
@@ -19,6 +19,9 @@
<url>http://sourceforge.net/tracker/?group_id=61302</url>
</issueManagement>
<inceptionYear>2002</inceptionYear>
+ <prerequisites>
+ <maven>2.2.1</maven>
+ </prerequisites>
<modules>
<module>jwebunit-code-generator</module>
<module>jwebunit-core</module>
@@ -201,7 +204,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
+ <version>2.5.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
@@ -210,7 +213,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
- <version>2.4.1</version>
+ <version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -220,12 +223,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
- <version>2.3.2</version>
+ <version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.10</version>
+ <version>2.12</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -245,7 +248,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.3</version>
<configuration>
<attach>false</attach>
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
@@ -267,7 +270,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.3.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
@@ -287,12 +290,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
- <version>3.0</version>
+ <version>3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8</version>
+ <version>2.8.1</version>
<configuration>
<quiet>true</quiet>
</configuration>
@@ -335,7 +338,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.6</version>
+ <version>2.7.1</version>
<inherited>false</inherited>
<executions>
<execution>
@@ -436,7 +439,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.8</version>
+ <version>2.9.1</version>
<configuration>
<configLocation>
${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
@@ -456,7 +459,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
- <version>2.10</version>
+ <version>2.12</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
@@ -469,7 +472,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.4</version>
<inherited>false</inherited>
<reportSets>
<reportSet>
@@ -487,7 +489,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3.2</version>
+ <version>2.5.1</version>
<configuration>
<xrefLocation>
${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
@@ -497,7 +499,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8</version>
<reportSets>
<reportSet>
<id>aggregate</id>
@@ -549,7 +550,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
- <version>2.6</version>
+ <version>2.7.1</version>
<configuration>
<aggregate>true</aggregate>
<targetJdk>1.5</targetJdk>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2012-07-25 13:43:28
|
Revision: 945
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=945&view=rev
Author: henryju
Date: 2012-07-25 13:43:21 +0000 (Wed, 25 Jul 2012)
Log Message:
-----------
Update Maven plugins.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-07-25 13:37:29 UTC (rev 944)
+++ trunk/pom.xml 2012-07-25 13:43:21 UTC (rev 945)
@@ -472,6 +472,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
+ <version>2.7.1</version>
<inherited>false</inherited>
<reportSets>
<reportSet>
@@ -499,6 +500,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.8.1</version>
<reportSets>
<reportSet>
<id>aggregate</id>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2012-07-25 13:46:04
|
Revision: 946
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=946&view=rev
Author: henryju
Date: 2012-07-25 13:45:55 +0000 (Wed, 25 Jul 2012)
Log Message:
-----------
MCHECKSTYLE-159 is fixed.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-07-25 13:43:21 UTC (rev 945)
+++ trunk/pom.xml 2012-07-25 13:45:55 UTC (rev 946)
@@ -450,10 +450,6 @@
<xrefLocation>
${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
</xrefLocation>
- <!-- Needed for MCHECKSTYLE-159 -->
- <propertyExpansion>
- cacheFile=${project.build.directory}/checkstyle-cachefile
- </propertyExpansion>
</configuration>
</plugin>
<plugin>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2014-03-17 09:47:16
|
Revision: 968
http://sourceforge.net/p/jwebunit/code/968
Author: henryju
Date: 2014-03-17 09:47:12 +0000 (Mon, 17 Mar 2014)
Log Message:
-----------
Upgrade maven plugins
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2014-03-17 08:41:12 UTC (rev 967)
+++ trunk/pom.xml 2014-03-17 09:47:12 UTC (rev 968)
@@ -197,7 +197,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.5.1</version>
+ <version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
@@ -211,7 +211,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
- <version>2.3.1</version>
+ <version>2.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -221,27 +221,27 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.12</version>
+ <version>2.17</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>2.5</version>
+ <version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
- <version>2.7</version>
+ <version>2.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
- <version>2.1.2</version>
+ <version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
<configuration>
<attach>false</attach>
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
@@ -256,14 +256,14 @@
<dependency>
<groupId>org.apache.apache.resources</groupId>
<artifactId>apache-source-release-assembly-descriptor</artifactId>
- <version>1.0.3</version>
+ <version>1.0.4</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
- <version>2.3.2</version>
+ <version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
@@ -283,19 +283,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
- <version>3.2</version>
+ <version>3.3</version>
<dependencies>
<dependency><!-- add support for ssh/scp -->
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
- <version>1.0</version>
+ <version>2.6</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8.1</version>
+ <version>2.9.1</version>
<configuration>
<quiet>true</quiet>
</configuration>
@@ -338,7 +338,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.7.1</version>
+ <version>2.9</version>
<inherited>false</inherited>
<executions>
<execution>
@@ -438,22 +438,6 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.9.1</version>
- <configuration>
- <configLocation>
- ${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
- </configLocation>
- <headerLocation>
- ${basedir}/${topDirectoryLocation}/src/checkstyle/header-checkstyle.txt
- </headerLocation>
- <xrefLocation>
- ${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
- </xrefLocation>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.12</version>
<configuration>
@@ -484,16 +468,6 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>2.5.1</version>
- <configuration>
- <xrefLocation>
- ${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
- </xrefLocation>
- </configuration>
- </plugin>
- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
@@ -538,31 +512,13 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- <version>2.4</version>
- <configuration>
- <aggregate>true</aggregate>
- </configuration>
- </plugin>
- <plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- <version>2.7.1</version>
- <configuration>
- <aggregate>true</aggregate>
- <targetJdk>1.5</targetJdk>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
- <report>dependencies</report>
<report>project-team</report>
<report>mailing-list</report>
<report>license</report>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2014-03-17 11:04:29
|
Revision: 975
http://sourceforge.net/p/jwebunit/code/975
Author: henryju
Date: 2014-03-17 11:04:26 +0000 (Mon, 17 Mar 2014)
Log Message:
-----------
Update SVN URL
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2014-03-17 11:02:29 UTC (rev 974)
+++ trunk/pom.xml 2014-03-17 11:04:26 UTC (rev 975)
@@ -183,9 +183,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</connection>
- <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</developerConnection>
- <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
+ <connection>scm:svn:http://svn.code.sf.net/p/jwebunit/code/trunk</connection>
+ <developerConnection>scm:svn:https://svn.code.sf.net/p/jwebunit/code/trunk</developerConnection>
+ <url>http://sourceforge.net/p/jwebunit/code/HEAD/tree/trunk</url>
</scm>
<organization>
<name>SourceForge</name>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|