We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e91d08b commit 728ef44Copy full SHA for 728ef44
build.gradle
@@ -8,10 +8,10 @@ plugins {
8
apply plugin: 'com.github.jk1.dependency-license-report'
9
apply plugin: 'com.adarshr.test-logger'
10
11
-if (project.hasProperty('release')) {
+if (project.hasProperty('release') || project.hasProperty('ci')) {
12
// todo add check for version ends with '-SNAPSHOT' after b/440037454
13
if (JavaVersion.current() != JavaVersion.VERSION_1_8) {
14
- throw new GradleException("The Dumper release build must be run with JDK 8 but was executed with JDK " + JavaVersion.current())
+ throw new GradleException("The Dumper release and CI builds must be run with JDK 8 but was executed with JDK " + JavaVersion.current())
15
}
16
17
0 commit comments