Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/randgalt/curator-guava-example
Shows that Curator 3.3.0 works with Guava 21
https://github.com/randgalt/curator-guava-example
Last synced: 6 days ago
JSON representation
Shows that Curator 3.3.0 works with Guava 21
- Host: GitHub
- URL: https://github.com/randgalt/curator-guava-example
- Owner: Randgalt
- Created: 2017-04-10T18:41:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T20:35:14.000Z (over 7 years ago)
- Last Synced: 2024-10-17T06:41:43.009Z (27 days ago)
- Language: Java
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# curator-guava-example
Shows that Curator 3.3.0 and 2.12.0 works with Guava 21To show non-shaded Guava run with Curator 3.2:
```
mvn -P 3_2 clean compile exec:java -Dexec.mainClass=temp.CuratorGuavaTest
```To show shaded Guava run with Curator 3.3:
```
mvn -P 3_3 clean compile exec:java -Dexec.mainClass=temp.CuratorGuavaTest
```To show non-shaded Guava run with Curator 2.11:
```
mvn -P 2_11 clean compile exec:java -Dexec.mainClass=temp.CuratorGuavaTest
```To show shaded Guava run with Curator 2.12:
```
mvn -P 2_12 clean compile exec:java -Dexec.mainClass=temp.CuratorGuavaTest
```