Skip to content

Commit

Permalink
[java] Upgrading guava
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Apr 7, 2019
1 parent a652ddc commit fd34075
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 7 deletions.
8 changes: 6 additions & 2 deletions .idea/libraries/guava.xml

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

4 changes: 3 additions & 1 deletion java/client/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="/third-party/java/hamcrest/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="/third-party/java/hamcrest/hamcrest-library-1.3.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/guava-25.0-jre.jar" sourcepath="/third-party/java/guava/guava-25.0-jre-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/guava-27.1-jre.jar" sourcepath="/third-party/java/guava/guava-27.1-jre-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/listenablefuture-1.0.jar" sourcepath="/third-party/java/guava/listenablefuture-1.0-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/failureaccess-1.0.1.jar" sourcepath="/third-party/java/guava/failureaccess-1.0.1-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/htmlunit/htmlunit-2.34.1.jar" sourcepath="/third-party/java/htmlunit/htmlunit-2.34.1-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/htmlunit/neko-htmlunit-2.34.0.jar" sourcepath="/third-party/java/htmlunit/neko-htmlunit-2.34.0-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/htmlunit/htmlunit-core-js-2.34.0.jar" sourcepath="/third-party/java/htmlunit/htmlunit-core-js-2.34.0-sources.jar"/>
Expand Down
4 changes: 3 additions & 1 deletion java/server/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
<classpathentry kind="lib" path="/third-party/java/commons-logging/commons-logging-1.2.jar"/>
<classpathentry kind="lib" path="/third-party/java/jcip/jcip-annotations-1.0.jar" sourcepath="/third-party/java/jcip/jcip-annotations-1.0-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/netty/netty-all-4.1.25.Final.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/guava-25.0-jre.jar" sourcepath="/third-party/java/guava/guava-25.0-jre-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/guava-27.1-jre.jar" sourcepath="/third-party/java/guava/guava-27.1-jre-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/listenablefuture-1.0.jar" sourcepath="/third-party/java/guava/listenablefuture-1.0-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/guava/failureaccess-1.0.1.jar" sourcepath="/third-party/java/guava/failureaccess-1.0.1-sources.jar"/>
<classpathentry kind="lib" path="/third-party/java/mockito/mockito-core-2.18.0.jar"/>
<classpathentry kind="lib" path="/third-party/java/jetty/jetty-repacked.jar"/>
<classpathentry kind="lib" path="/third-party/java/yaml/snakeyaml-1.19.jar" sourcepath="/third-party/java/yaml/snakeyaml-1.19-sources.jar"/>
Expand Down
24 changes: 21 additions & 3 deletions third_party/java/guava/BUCK
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
prebuilt_jar(
name = "guava",
maven_coords = "com.google.guava:guava:jar:25.0-jre",
binary_jar = "guava-25.0-jre.jar",
source_jar = "guava-25.0-jre-sources.jar",
maven_coords = "com.google.guava:guava:jar:27.1-jre",
binary_jar = "guava-27.1-jre.jar",
source_jar = "guava-27.1-jre-sources.jar",
deps = [
":listenablefuture",
":failureaccess",
],
visibility = [
"PUBLIC",
],
)

prebuilt_jar(
name = "listenablefuture",
maven_coords = "com.google.guava:listenablefuture:jar:1.0",
binary_jar = "listenablefuture-1.0.jar",
source_jar = "listenablefuture-1.0-sources.jar",
)

prebuilt_jar(
name = "failureaccess",
maven_coords = "com.google.guava:failureaccess:jar:1.0.1",
binary_jar = "failureaccess-1.0.1.jar",
source_jar = "failureaccess-1.0.1-sources.jar",
)
Binary file not shown.
Binary file added third_party/java/guava/failureaccess-1.0.1.jar
Binary file not shown.
Binary file removed third_party/java/guava/guava-25.0-jre-sources.jar
Binary file not shown.
Binary file removed third_party/java/guava/guava-25.0-jre.jar
Binary file not shown.
Binary file added third_party/java/guava/guava-27.1-jre-sources.jar
Binary file not shown.
Binary file added third_party/java/guava/guava-27.1-jre.jar
Binary file not shown.
Binary file not shown.
Binary file added third_party/java/guava/listenablefuture-1.0.jar
Binary file not shown.

0 comments on commit fd34075

Please sign in to comment.