From: <rb...@us...> - 2018-06-20 17:44:27
|
Revision: 15371 http://sourceforge.net/p/htmlunit/code/15371 Author: rbri Date: 2018-06-20 17:44:22 +0000 (Wed, 20 Jun 2018) Log Message: ----------- update pom Modified Paths: -------------- trunk/htmlunit/pom.xml trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ExternalTest.java Modified: trunk/htmlunit/pom.xml =================================================================== --- trunk/htmlunit/pom.xml 2018-06-20 10:04:37 UTC (rev 15370) +++ trunk/htmlunit/pom.xml 2018-06-20 17:44:22 UTC (rev 15371) @@ -222,7 +222,7 @@ <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> - <version>3.5.0</version> + <version>3.5.1</version> <extensions>true</extensions> <configuration> <instructions> @@ -265,7 +265,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.21.0</version> + <version>2.22.0</version> <configuration> <excludes> <exclude>**/huge/*.java</exclude> @@ -291,7 +291,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.21.0</version> + <version>2.22.0</version> <configuration> <excludes> <exclude>**/libraries/*.java</exclude> @@ -318,7 +318,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.21.0</version> + <version>2.22.0</version> <configuration> <includes> <include>**/libraries/*.java</include> @@ -344,7 +344,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.21.0</version> + <version>2.22.0</version> <configuration> <includes> <include>**/huge/*.java</include> @@ -842,7 +842,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> - <version>1.3</version> + <version>1.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ExternalTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ExternalTest.java 2018-06-20 10:04:37 UTC (rev 15370) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ExternalTest.java 2018-06-20 17:44:22 UTC (rev 15371) @@ -49,6 +49,8 @@ /** Chrome driver. */ static String CHROME_DRIVER_ = "2.40"; + /** Gecko driver. */ + static String GECKO_DRIVER_ = "0.21.0"; /** * Tests that POM dependencies are the latest. |