File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,17 @@ import java.util.*
5
5
import com.android.build.api.dsl.ApplicationExtension
6
6
import com.android.build.api.dsl.LibraryExtension
7
7
import com.android.build.gradle.BaseExtension
8
+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
9
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
8
10
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
9
11
import org.kohsuke.github.GHReleaseBuilder
10
12
import org.kohsuke.github.GitHub
11
13
12
14
buildscript {
13
15
dependencies {
14
- classpath(" com.android.tools.build:gradle:8.2.2 " )
15
- classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22 " )
16
- classpath(" org.kohsuke:github-api:1.316 " )
16
+ classpath(" com.android.tools.build:gradle:8.5.0 " )
17
+ classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0 " )
18
+ classpath(" org.kohsuke:github-api:1.321 " )
17
19
}
18
20
19
21
repositories {
@@ -217,7 +219,7 @@ allprojects {
217
219
}
218
220
219
221
tasks.withType<KotlinCompile > {
220
- kotlinOptions .jvmTarget = javaVersion.toString()
222
+ compilerOptions .jvmTarget = JvmTarget .fromTarget( javaVersion.toString() )
221
223
}
222
224
223
225
tasks.withType<JavaCompile > {
Original file line number Diff line number Diff line change 1
1
# Sun Mar 05 17:58:42 CET 2023
2
2
distributionBase =GRADLE_USER_HOME
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.6 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.7 -bin.zip
4
4
distributionPath =wrapper/dists
5
5
zipStorePath =wrapper/dists
6
6
zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments