Minor: fixing gradle warnings

Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
This commit is contained in:
Max Lambrecht 2020-06-09 09:04:55 -03:00
parent d005100a23
commit bee7627afa
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ subprojects {
testCompileOnly 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.6.2'
testCompileOnly 'org.junit.jupiter:junit-jupiter-params:5.6.2'
testCompileOnly 'org.mockito:mockito-core:3.3.3'
testRuntimeOnly 'org.mockito:mockito-junit-jupiter:3.3.3'

View File

@ -10,6 +10,6 @@ apply plugin: 'com.github.johnrengelman.shadow'
assemble.dependsOn shadowJar
dependencies {
compile(project(":java-spiffe-core"))
implementation(project(":java-spiffe-core"))
}