Skip to content

Commit 0e1bb38

Browse files
renovate[bot]augi
andauthored
chore(deps): update dependency gradle to v9 (#618)
* chore(deps): update dependency gradle to v9 * chore: deprecated archivesBaseName removed --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michal Augustýn <[email protected]>
1 parent 519876c commit 0e1bb38

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ subprojects {
4949
publications {
5050
mavenJava(MavenPublication) {
5151
from(components.java)
52-
artifactId = archivesBaseName
52+
artifactId = tasks.jar.archiveBaseName.get()
5353
pom {
5454
name = 'gRPC Java JWT'
5555
description = 'JWT based authentication for gRPC-Java'

core/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
archivesBaseName = 'grpc-java-jwt'
1+
tasks.jar.configure {
2+
archiveBaseName.set('grpc-java-jwt')
3+
}
24

35
dependencies {
46
api "io.grpc:grpc-core:$grpcVersion"

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

keycloak/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ plugins {
33
id 'com.google.protobuf'
44
id 'idea'
55
}
6-
archivesBaseName = 'grpc-java-jwt-keycloak'
6+
7+
tasks.jar.configure {
8+
archiveBaseName.set('grpc-java-jwt-keycloak')
9+
}
710

811
dockerCompose.isRequiredBy(test)
912

0 commit comments

Comments
 (0)