Revision: 928 http://jwebunit.svn.sourceforge.net/jwebunit/?rev=928&view=rev Author: henryju Date: 2011-10-04 08:22:53 +0000 (Tue, 04 Oct 2011) Log Message: ----------- Update to Selenium 2.7.0. Fix file headers.
Modified Paths: -------------- trunk/jwebunit-webdriver-plugin/pom.xml trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitDriver.java trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitWebElement.java trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverElementImpl.java trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverTestingEngineImpl.java trunk/jwebunit-webdriver-plugin/src/site/site.xml trunk/jwebunit-webdriver-plugin/src/site/xdoc/index.xml trunk/jwebunit-webdriver-plugin/src/test/java/net/sourceforge/jwebunit/webdriver/JWebUnitTest.java Modified: trunk/jwebunit-webdriver-plugin/pom.xml =================================================================== --- trunk/jwebunit-webdriver-plugin/pom.xml 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/pom.xml 2011-10-04 08:22:53 UTC (rev 928) @@ -17,7 +17,6 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <testFailureIgnore>true</testFailureIgnore> - <skip>true</skip> </configuration> </plugin> </plugins> @@ -31,7 +30,7 @@ <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-htmlunit-driver</artifactId> - <version>2.6.0</version> + <version>2.7.0</version> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> @@ -42,7 +41,7 @@ <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> - <version>2.6.0</version> + <version>2.7.0</version> </dependency> <dependency> <groupId>net.sourceforge.jwebunit</groupId> Modified: trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitDriver.java =================================================================== --- trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitDriver.java 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitDriver.java 2011-10-04 08:22:53 UTC (rev 928) @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2011, JWebUnit team. + * + * This file is part of JWebUnit. + * + * JWebUnit is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * JWebUnit is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with JWebUnit. If not, see <http://www.gnu.org/licenses/>. + */ package net.sourceforge.jwebunit.webdriver; import org.openqa.selenium.Capabilities; Modified: trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitWebElement.java =================================================================== --- trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitWebElement.java 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/FixedHtmlUnitWebElement.java 2011-10-04 08:22:53 UTC (rev 928) @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2011, JWebUnit team. + * + * This file is part of JWebUnit. + * + * JWebUnit is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * JWebUnit is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with JWebUnit. If not, see <http://www.gnu.org/licenses/>. + */ package net.sourceforge.jwebunit.webdriver; import com.gargoylesoftware.htmlunit.html.DomElement; Modified: trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverElementImpl.java =================================================================== --- trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverElementImpl.java 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverElementImpl.java 2011-10-04 08:22:53 UTC (rev 928) @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010, JWebUnit team. + * Copyright (c) 2011, JWebUnit team. * * This file is part of JWebUnit. * @@ -16,7 +16,6 @@ * You should have received a copy of the GNU Lesser General Public License * along with JWebUnit. If not, see <http://www.gnu.org/licenses/>. */ - /** * */ Modified: trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverTestingEngineImpl.java =================================================================== --- trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverTestingEngineImpl.java 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/src/main/java/net/sourceforge/jwebunit/webdriver/WebDriverTestingEngineImpl.java 2011-10-04 08:22:53 UTC (rev 928) @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010, JWebUnit team. + * Copyright (c) 2011, JWebUnit team. * * This file is part of JWebUnit. * Modified: trunk/jwebunit-webdriver-plugin/src/site/site.xml =================================================================== --- trunk/jwebunit-webdriver-plugin/src/site/site.xml 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/src/site/site.xml 2011-10-04 08:22:53 UTC (rev 928) @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- - Copyright (c) 2010, JWebUnit team. + Copyright (c) 2011, JWebUnit team. This file is part of JWebUnit. @@ -19,7 +19,6 @@ along with JWebUnit. If not, see <http://www.gnu.org/licenses/>. --> - <project name="JWebUnit"> <body> <menu ref="reports" /> Modified: trunk/jwebunit-webdriver-plugin/src/site/xdoc/index.xml =================================================================== --- trunk/jwebunit-webdriver-plugin/src/site/xdoc/index.xml 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/src/site/xdoc/index.xml 2011-10-04 08:22:53 UTC (rev 928) @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- - Copyright (c) 2010, JWebUnit team. + Copyright (c) 2011, JWebUnit team. This file is part of JWebUnit. @@ -19,7 +19,6 @@ along with JWebUnit. If not, see <http://www.gnu.org/licenses/>. --> - <document> <properties> <author email="henryju.at.users.sourceforge.net">Julien HENRY</author> Modified: trunk/jwebunit-webdriver-plugin/src/test/java/net/sourceforge/jwebunit/webdriver/JWebUnitTest.java =================================================================== --- trunk/jwebunit-webdriver-plugin/src/test/java/net/sourceforge/jwebunit/webdriver/JWebUnitTest.java 2011-09-23 15:35:23 UTC (rev 927) +++ trunk/jwebunit-webdriver-plugin/src/test/java/net/sourceforge/jwebunit/webdriver/JWebUnitTest.java 2011-10-04 08:22:53 UTC (rev 928) @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010, JWebUnit team. + * Copyright (c) 2011, JWebUnit team. * * This file is part of JWebUnit. * @@ -16,7 +16,6 @@ * You should have received a copy of the GNU Lesser General Public License * along with JWebUnit. If not, see <http://www.gnu.org/licenses/>. */ - package net.sourceforge.jwebunit.webdriver; import org.junit.AfterClass; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2dcopy1 _______________________________________________ JWebUnit-development mailing list JWebUnit-development@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jwebunit-development