Skip to content

Commit

Permalink
Issue #31 Add guava as explicit dependency rather than rely on shared…
Browse files Browse the repository at this point in the history
…-security's dependencies (#32)

This adds guava as direct compile+runtime dependency since this library directly uses it.
  • Loading branch information
sarlaccpit authored Jan 5, 2021
1 parent ad03b19 commit ea0c29a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,10 @@ project('client') {
dependencies {
compileOnly "org.slf4j:slf4j-api:${slf4jVersion}"
compileOnly "io.pravega:pravega-shared-security:${pravegaVersion}"
implementation 'org.keycloak:keycloak-authz-client'
implementation "org.keycloak:keycloak-authz-client"
implementation "com.google.guava:guava:${guavaVersion}"

testImplementation 'org.keycloak:keycloak-adapter-core'
testImplementation "org.keycloak:keycloak-adapter-core"
testImplementation "junit:junit:${junitVersion}"
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
}
Expand Down
8 changes: 5 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@
#

# Third-party dependencies
keycloakVersion=10.0.2
slf4jVersion=1.7.30

guavaVersion=28.2-jre
junitVersion=4.13
keycloakVersion=10.0.2
mockitoVersion=3.3.3

pravegaVersion=0.9.0-2718.6470c10-SNAPSHOT
slf4jVersion=1.7.30

buildVersion=0.9.0-SNAPSHOT


Expand Down

0 comments on commit ea0c29a

Please sign in to comment.