File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
plugin/src/integrationTest/kotlin/com/vanniktech/maven/publish Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.1.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.2 -bin.zip
4
4
networkTimeout =10000
5
+ validateDistributionUrl =true
5
6
zipStoreBase =GRADLE_USER_HOME
6
7
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -130,10 +130,13 @@ location of your Java installation."
130
130
fi
131
131
else
132
132
JAVACMD=java
133
- which java > /dev/null 2>&1 || die " ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
133
+ if ! command -v java > /dev/null 2>&1
134
+ then
135
+ die " ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134
136
135
137
Please set the JAVA_HOME variable in your environment to match the
136
138
location of your Java installation."
139
+ fi
137
140
fi
138
141
139
142
# Increase the maximum file descriptors if we can.
Original file line number Diff line number Diff line change @@ -40,14 +40,14 @@ enum class AgpVersion(
40
40
41
41
// beta channel
42
42
AGP_8_1 (
43
- value = " 8.1.0-beta05 " ,
43
+ value = " 8.1.0-rc01 " ,
44
44
minGradleVersion = GradleVersion .GRADLE_8_1 ,
45
45
minJdkVersion = JavaVersion .VERSION_17 ,
46
46
),
47
47
48
48
// canary channel
49
49
AGP_8_2 (
50
- value = " 8.2.0-alpha09 " ,
50
+ value = " 8.2.0-alpha10 " ,
51
51
minGradleVersion = GradleVersion .GRADLE_8_1 ,
52
52
minJdkVersion = JavaVersion .VERSION_17 ,
53
53
),
@@ -72,7 +72,7 @@ enum class GradleVersion(val value: String) {
72
72
GRADLE_8_1 (" 8.1.1" ),
73
73
74
74
// preview
75
- GRADLE_8_2 (" 8.2-rc-2 " ),
75
+ GRADLE_8_2 (" 8.2" ),
76
76
;
77
77
78
78
companion object {
You can’t perform that action at this time.
0 commit comments