-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from maxbettercloud/master
Java 11, Gradle 6.9, dependency updates
- Loading branch information
Showing
8 changed files
with
103 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,35 @@ | ||
dependencies { | ||
api ("com.google.cloud.bigtable:bigtable-hbase-2.x:$bigtableVersion") { | ||
// see https://issues.apache.org/jira/browse/HBASE-22889 | ||
exclude group: 'org.apache.hbase', module: 'hbase-shaded-client' | ||
} | ||
api "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion" | ||
api ("org.apache.hbase:hbase-client:$hbaseClientVersion") { | ||
exclude group: 'org.apache.hadoop', module: 'hadoop-auth' | ||
exclude group: 'org.apache.hadoop', module: 'hadoop-common' | ||
exclude group: 'org.apache.zookeeper', module: 'zookeeper' | ||
} | ||
api ("org.apache.hadoop:hadoop-common:$hadoopCommonVersion") { | ||
api ("org.apache.hadoop:hadoop-common:$hadoopVersion") { | ||
exclude group: 'com.github.pjfanning', module: 'jersey-json' | ||
exclude group: 'org.apache.avro', module: 'avro' | ||
exclude group: 'org.apache.hadoop', module: 'hadoop-auth' | ||
exclude group: 'org.apache.zookeeper', module: 'zookeeper' | ||
exclude group: 'org.eclipse.jetty', module: 'jetty-server' | ||
exclude group: 'org.xerial.snappy', module: 'snappy-java' | ||
} | ||
implementation("com.github.pjfanning:jersey-json:$jerseyJsonVersion") { | ||
exclude group: 'org.codehaus.jettison', module: 'jettison' | ||
} | ||
implementation "org.codehaus.jettison:jettison:$jettisonVersion" | ||
implementation "org.apache.avro:avro:$avroVersion" | ||
implementation("org.apache.hadoop:hadoop-auth:$hadoopVersion") { | ||
exclude group: 'net.minidev', module: 'json-smart' | ||
} | ||
implementation "net.minidev:json-smart:$jsonSmartVersion" | ||
implementation ("org.apache.zookeeper:zookeeper:$zookeeperVersion") { | ||
exclude group: 'io.netty', module: 'netty-handler' | ||
} | ||
implementation "io.netty:netty-handler:$nettyVersion" | ||
implementation "org.eclipse.jetty:jetty-server:$jettyServerVersion" | ||
implementation "org.xerial.snappy:snappy-java:$snappyJavaVersion" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters