Skip to content

Commit e15effe

Browse files
authored
Mark snapshot version of protobuf gradle plugin non changeable (elastic#138241)
This should avoid Gradle to check for updates on that Snapshot artifact even though we know it will not change. This should make CI more stable towards flaky network issues with jitpack
1 parent 7933528 commit e15effe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

x-pack/plugin/otel-data/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ buildscript {
1212
maven { url = "https://jitpack.io" }
1313
}
1414
dependencies {
15-
classpath 'com.github.google:protobuf-gradle-plugin:PR786-SNAPSHOT'
15+
classpath('com.github.google:protobuf-gradle-plugin:PR786-SNAPSHOT') {
16+
changing = false
17+
}
1618
}
1719
}
1820

0 commit comments

Comments
 (0)