Skip to content

Commit

Permalink
Updating htmlunit to 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 17, 2013
1 parent f262ad8 commit bcf3369
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .idea/libraries/cssparser.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .idea/libraries/htmlunit.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/libraries/nekohtml.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions java/client/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<classpathentry kind="lib" path="/third-party/java/hamcrest/hamcrest-library-1.3.jar"/>
<classpathentry kind="lib" path="/third-party/java/testng/testng-6.8.5.jar" sourcepath="/third-party/java/testng/testng-6.8.5-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava-libraries/guava-15.0.jar" sourcepath="/third-party/java/guava-libraries/guava-15.0-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/htmlunit/htmlunit-2.12.jar" sourcepath="/third-party/java/htmlunit/htmlunit-2.12-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/htmlunit/htmlunit-core-js-2.12.jar"/>
<classpathentry kind="lib" path="/third-party/java/htmlunit/htmlunit-2.13.jar" sourcepath="/third-party/java/htmlunit/htmlunit-2.13-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/htmlunit/htmlunit-core-js-2.13.jar"/>
<classpathentry kind="lib" path="/third-party/java/jna/jna-3.4.0.jar" sourcepath="/third-party/java/jna/jna-3.4.0-src.jar"/>
<classpathentry kind="lib" path="/third-party/java/jna/jna-platform-3.4.0.jar" sourcepath="/third-party/java/jna/jna-platform-3.4.0-src.jar"/>
<classpathentry kind="lib" path="/third-party/java/commons-exec/commons-exec-1.1.jar" sourcepath="/third-party/java/commons-exec/commons-exec-1.1-sources.jar"/>
Expand All @@ -29,13 +29,13 @@
<classpathentry kind="lib" path="/third-party/java/commons-lang/commons-lang3-3.1.jar" sourcepath="/third-party/java/commons-lang/commons-lang3-3.1-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/apache-httpclient/httpmime-4.3.1.jar" sourcepath="/third-party/java/apache-httpclient/httpmime-4.3.1-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/commons-collections/commons-collections-3.2.1.jar" sourcepath="/third-party/java/commons-collections/commons-collections-3.2.1-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/cssparser/cssparser-0.9.9.jar"/>
<classpathentry kind="lib" path="/third-party/java/cssparser/cssparser-0.9.11.jar"/>
<classpathentry kind="lib" path="/third-party/java/xml/xercesImpl-2.10.0.jar"/>
<classpathentry kind="lib" path="/third-party/java/xml/xalan-2.7.1.jar"/>
<classpathentry kind="lib" path="/third-party/java/commons-fileupload/commons-fileupload-1.2.2.jar" sourcepath="/third-party/java/commons-fileupload/commons-fileupload-1.2.2-src.jar"/>
<classpathentry kind="lib" path="/third-party/java/webbit/webbit-0.4.14.jar" sourcepath="/third-party/java/webbit/webbit-0.4.14-src.jar"/>
<classpathentry kind="lib" path="/third-party/java/little_proxy/littleproxy-0.5-SNAPSHOT.jar" sourcepath="/third-party/java/little_proxy/littleproxy-0.5-SNAPSHOT-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/nekohtml/nekohtml-1.9.17.jar"/>
<classpathentry kind="lib" path="/third-party/java/nekohtml/nekohtml-1.9.19.jar"/>
<classpathentry kind="lib" path="/third-party/java/netty/netty-3.5.7.Final.jar"/>
<classpathentry kind="lib" path="/third-party/java/google-protobuffers/protobuf-java-2.4.1.jar"/>
<classpathentry kind="lib" path="/third-party/java/commons-jxpath/commons-jxpath-1.3.jar"/>
Expand Down
2 changes: 1 addition & 1 deletion third_party/java/cssparser/BUCK
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
prebuilt_jar(name = 'cssparser',
binary_jar = 'cssparser-0.9.9.jar',
binary_jar = 'cssparser-0.9.11.jar',
deps = [
'//third_party/java/sac:sac',
],
Expand Down
2 changes: 1 addition & 1 deletion third_party/java/cssparser/build.desc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
java_library(name = "cssparser",
deps = [
"cssparser-0.9.9.jar",
"cssparser-0.9.11.jar",
"//third_party/java/sac"
])
Binary file not shown.
6 changes: 3 additions & 3 deletions third_party/java/htmlunit/BUCK
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
prebuilt_jar(name = 'htmlunit',
binary_jar = 'htmlunit-2.12.jar',
source_jar = 'htmlunit-2.12-sources.jar',
binary_jar = 'htmlunit-2.13.jar',
source_jar = 'htmlunit-2.13-sources.jar',
deps = [
':js-core',
'//third_party/java/apache-httpclient:apache-httpclient',
Expand All @@ -17,7 +17,7 @@ prebuilt_jar(name = 'htmlunit',
)

prebuilt_jar(name = 'js-core',
binary_jar = 'htmlunit-core-js-2.12.jar',
binary_jar = 'htmlunit-core-js-2.13.jar',
visibility = [
'//java/client/src/org/openqa/selenium/htmlunit:htmlunit',
],
Expand Down
4 changes: 2 additions & 2 deletions third_party/java/htmlunit/build.desc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
java_library(name = "htmlunit",
deps = [
"htmlunit-2.12.jar",
"htmlunit-core-js-2.12.jar",
"htmlunit-2.13.jar",
"htmlunit-core-js-2.13.jar",
"//third_party/java/apache-httpclient",
"//third_party/java/commons-collections",
"//third_party/java/commons-io",
Expand Down
Binary file removed third_party/java/htmlunit/htmlunit-2.12-sources.jar
Binary file not shown.
Binary file removed third_party/java/htmlunit/htmlunit-2.12.jar
Binary file not shown.
Binary file not shown.
Binary file added third_party/java/htmlunit/htmlunit-2.13.jar
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion third_party/java/nekohtml/BUCK
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
prebuilt_jar(name = 'nekohtml',
binary_jar = 'nekohtml-1.9.17.jar',
binary_jar = 'nekohtml-1.9.19.jar',
visibility = [
'//third_party/java/...',
],
Expand Down
2 changes: 1 addition & 1 deletion third_party/java/nekohtml/build.desc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
java_library(name = "nekohtml",
deps = [
"nekohtml-1.9.17.jar"
"nekohtml-1.9.19.jar"
])
Binary file not shown.

0 comments on commit bcf3369

Please sign in to comment.