File tree Expand file tree Collapse file tree 6 files changed +10
-5
lines changed Expand file tree Collapse file tree 6 files changed +10
-5
lines changed Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff line change 1- archivesBaseName = ' grpc-java-jwt'
1+ tasks. jar. configure {
2+ archiveBaseName. set(' grpc-java-jwt' )
3+ }
24
35dependencies {
46 api " io.grpc:grpc-core:$grpcVersion "
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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
811dockerCompose. isRequiredBy(test)
912
You can’t perform that action at this time.
0 commit comments