Skip to content

Commit e0c30bb

Browse files
Merge pull request #15 from bitrise-io/remote-cache-version
feat: ACI-1988 Use fixed gradle remote cache version
2 parents b554d28 + af37f8d commit e0c30bb

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

internal/config/gradle/gradleconfig_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ initscript {
110110
maven(url="https://jitpack.io")
111111
}
112112
dependencies {
113-
classpath("io.bitrise.gradle:remote-cache:1.+")
113+
classpath("io.bitrise.gradle:remote-cache:1.2.3")
114114
classpath("io.bitrise.gradle:gradle-analytics:2.1")
115115
}
116116
}
@@ -165,7 +165,7 @@ initscript {
165165
maven(url="https://jitpack.io")
166166
}
167167
dependencies {
168-
classpath("io.bitrise.gradle:remote-cache:1.+")
168+
classpath("io.bitrise.gradle:remote-cache:1.2.3")
169169
classpath("io.bitrise.gradle:gradle-analytics:2.1")
170170
}
171171
}
@@ -217,7 +217,7 @@ initscript {
217217
maven(url="https://jitpack.io")
218218
}
219219
dependencies {
220-
classpath("io.bitrise.gradle:remote-cache:1.+")
220+
classpath("io.bitrise.gradle:remote-cache:1.2.3")
221221
}
222222
}
223223

internal/consts/consts.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ const (
66
EndpointURLATL1 = "grpc://atl-cache.services.bitrise.io:6666"
77

88
// Gradle Remote Build Cache related consts
9-
// Use the latest 1.x version of our dependency, so we don't have to update this definition after every lib release.
10-
// But don't forget to update this to `2.+` if the library reaches version 2.0!
11-
GradleRemoteBuildCachePluginDepVersion = "1.+"
9+
GradleRemoteBuildCachePluginDepVersion = "1.2.3"
1210

1311
// Gradle Analytics related consts
1412
GradleAnalyticsPluginDepVersion = "2.1"

0 commit comments

Comments
 (0)