File tree 2 files changed +4
-4
lines changed
build-logic/src/main/kotlin/dokkabuild/utils
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ package dokkabuild.utils
6
6
7
7
import org.gradle.api.Project
8
8
import org.gradle.kotlin.dsl.dokkaBuild
9
+ import org.jetbrains.kotlin.buildtools.api.ExperimentalBuildToolsApi
9
10
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
10
11
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
11
12
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
@@ -16,7 +17,7 @@ fun Project.configureGradleKotlinCompatibility() {
16
17
if (! dokkaBuild.enforceGradleKotlinCompatibility.get()) return
17
18
18
19
extensions.configure<KotlinJvmProjectExtension >(" kotlin" ) {
19
- @OptIn(ExperimentalKotlinGradlePluginApi ::class )
20
+ @OptIn(ExperimentalKotlinGradlePluginApi ::class , ExperimentalBuildToolsApi :: class )
20
21
compilerVersion.set(" 2.0.20" )
21
22
coreLibrariesVersion = " 2.0.20"
22
23
compilerOptions {
Original file line number Diff line number Diff line change 3
3
# We use a different compiler version to compile modules and Gradle Plugin
4
4
# to be able to use Kotlin Language/API version 1.4 to be compatible with Gradle 7.
5
5
# The logic leaves in build-logic/src/main/kotlin/dokkabuild/utils/gradleKotlinCompatibility.kt
6
- gradlePlugin-kotlin = " 2.0.20 "
6
+ gradlePlugin-kotlin = " 2.1.10 "
7
7
# See: https://kotlinlang.org/docs/gradle-configure-project.html#apply-the-plugin
8
- gradlePlugin-android = " 7.1.3"
9
- gradlePlugin-dokka = " 1.9.20"
8
+ gradlePlugin-android = " 7.3.1"
10
9
11
10
kotlinx-coroutines = " 1.7.3"
12
11
kotlinx-collections-immutable = " 0.3.6"
You can’t perform that action at this time.
0 commit comments