Update grpc, netty and jwt-jose dependencies
Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
This commit is contained in:
parent
cccc243829
commit
91eb49bd8e
|
|
@ -14,9 +14,9 @@ buildscript {
|
|||
}
|
||||
|
||||
ext {
|
||||
grpcVersion = '1.29.0'
|
||||
nettyVersion = '4.1.49.Final'
|
||||
protobufProtocVersion = '3.11.4'
|
||||
grpcVersion = '1.30.0'
|
||||
nettyVersion = '4.1.50.Final'
|
||||
protobufProtocVersion = '3.12.0'
|
||||
}
|
||||
|
||||
apply plugin: 'com.google.protobuf'
|
||||
|
|
@ -57,7 +57,7 @@ dependencies {
|
|||
compileOnly group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
|
||||
|
||||
// library for processing JWT tokens and JOSE JWK bundles
|
||||
implementation group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '8.17'
|
||||
implementation group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '8.19'
|
||||
|
||||
// using bouncy castle for generating x509 certs for testing purposes
|
||||
testImplementation group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.65'
|
||||
|
|
|
|||
|
|
@ -19,13 +19,17 @@ shadowJar {
|
|||
classifier = ""
|
||||
}
|
||||
|
||||
ext {
|
||||
grpcVersion = '1.30.0'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api (project(':java-spiffe-core'))
|
||||
implementation group: 'commons-cli', name: 'commons-cli', version: '1.4'
|
||||
|
||||
// pull grpc libraries for testing
|
||||
testImplementation group: 'io.grpc', name: 'grpc-netty', version: "1.29.0"
|
||||
testImplementation group: 'io.grpc', name: 'grpc-protobuf', version: "1.29.0"
|
||||
testImplementation group: 'io.grpc', name: 'grpc-stub', version: "1.29.0"
|
||||
testImplementation group: 'io.grpc', name: 'grpc-testing', version: "1.29.0"
|
||||
testImplementation group: 'io.grpc', name: 'grpc-netty', version: "${grpcVersion}"
|
||||
testImplementation group: 'io.grpc', name: 'grpc-protobuf', version: "${grpcVersion}"
|
||||
testImplementation group: 'io.grpc', name: 'grpc-stub', version: "${grpcVersion}"
|
||||
testImplementation group: 'io.grpc', name: 'grpc-testing', version: "${grpcVersion}"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ assemble.dependsOn shadowJar
|
|||
dependencies {
|
||||
api(project(":java-spiffe-core"))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue