Skip to content

Commit 64ac792

Browse files
committed
Upgrade Gradle and Gradle plugins
1 parent a977385 commit 64ac792

File tree

20 files changed

+55
-26
lines changed

20 files changed

+55
-26
lines changed

benchmarks/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ application {
107107
from(openloop_client)
108108
from(qps_server)
109109
from(benchmark_worker)
110-
fileMode = 0755
110+
filePermissions {
111+
unix(0755)
112+
}
111113
}
112114
}
113115

examples/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ def createStartScripts(String mainClassName) {
8282
application {
8383
applicationDistribution.into('bin') {
8484
from(newTask)
85-
fileMode = 0755
85+
filePermissions {
86+
unix(0755)
87+
}
8688
}
8789
}
8890
}

examples/example-alts/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ application {
7474
applicationDistribution.into('bin') {
7575
from(helloWorldAltsServer)
7676
from(helloWorldAltsClient)
77-
fileMode = 0755
77+
filePermissions {
78+
unix(0755)
79+
}
7880
}
7981
}

examples/example-debug/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ application {
7575
applicationDistribution.into('bin') {
7676
from(HelloWorldDebuggableClient)
7777
from(HostnameDebuggableServer)
78-
fileMode = 0755
78+
filePermissions {
79+
unix(0755)
80+
}
7981
}
8082
}

examples/example-gauth/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ task googleAuthClient(type: CreateStartScripts) {
7171
application {
7272
applicationDistribution.into('bin') {
7373
from(googleAuthClient)
74-
fileMode = 0755
74+
filePermissions {
75+
unix(0755)
76+
}
7577
}
7678
}

examples/example-gcp-csm-observability/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ application {
7272
applicationDistribution.into('bin') {
7373
from(CsmObservabilityHelloWorldServer)
7474
from(CsmObservabilityHelloWorldClient)
75-
fileMode = 0755
75+
filePermissions {
76+
unix(0755)
77+
}
7678
}
7779
}

examples/example-gcp-observability/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ application {
6666
applicationDistribution.into('bin') {
6767
from(ObservabilityHelloWorldServer)
6868
from(ObservabilityHelloWorldClient)
69-
fileMode = 0755
69+
filePermissions {
70+
unix(0755)
71+
}
7072
}
7173
}

examples/example-hostname/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'java'
44

55
id "com.google.protobuf" version "0.9.4"
6-
id 'com.google.cloud.tools.jib' version '3.4.1' // For releasing to Docker Hub
6+
id 'com.google.cloud.tools.jib' version '3.4.3' // For releasing to Docker Hub
77
}
88

99
repositories {

examples/example-jwt-auth/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ application {
8383
applicationDistribution.into('bin') {
8484
from(hellowWorldJwtAuthServer)
8585
from(hellowWorldJwtAuthClient)
86-
fileMode = 0755
86+
filePermissions {
87+
unix(0755)
88+
}
8789
}
8890
}

examples/example-oauth/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ application {
8383
applicationDistribution.into('bin') {
8484
from(hellowWorldOauthServer)
8585
from(hellowWorldOauthClient)
86-
fileMode = 0755
86+
filePermissions {
87+
unix(0755)
88+
}
8789
}
8890
}

0 commit comments

Comments
 (0)