Huanshankeji's Gradle common code in Kotlin, mainly for common projects in Kotlin
There are currently no docs or tutorials on how to use the plugins. Check out the API documentation here. See the build scripts in kotlin-common for examples.
See gradle/wrapper/gradle-wrapper.properties for the currently dependent Gradle version and buildSrc/build.gradle.kts for the currently dependent Kotlin version. These versions are tested against and used by us. There might be compatibility issues when you use other versions of Gradle or Kotlin, especially versions with different MAJOR versions.
The projects and plugins depend on a certain version of the Kotlin Gradle plugins. Sometimes it's needed to specify your own version of the Kotlin Gradle plugins when using the plugins in your project. For example, a version of Compose Multiplatform currently supports only a certain version of the Kotlin Gradle plugins. Especially, if your desired Kotlin version is lower than this project's dependent Kotlin version, you need to exclude the transitive Kotlin dependencies.
For example, with Compose 1.3.1 in buildSrc/build.gradle.kts
:
dependencies {
implementation(kotlin("gradle-plugin", "1.8.10"))
implementation("org.jetbrains.compose:compose-gradle-plugin:1.3.1")
api("com.huanshankeji:common-gradle-dependencies:0.5.0-20230310") { exclude("org.jetbrains.kotlin") }
implementation("com.huanshankeji:kotlin-common-gradle-plugins:0.4.0") { exclude("org.jetbrains.kotlin") }
implementation("com.huanshankeji:architecture-common-gradle-plugins:0.4.0") { exclude("org.jetbrains.kotlin") }
}
Or:
dependencies {
implementation(kotlin("gradle-plugin", "1.8.10"))
implementation("org.jetbrains.compose:compose-gradle-plugin:1.3.1")
api("com.huanshankeji:common-gradle-dependencies:0.5.0-20230310")
implementation("com.huanshankeji:kotlin-common-gradle-plugins:0.4.0")
implementation("com.huanshankeji:architecture-common-gradle-plugins:0.4.0")
}
configurations.all {
resolutionStrategy {
force("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10")
}
}
- IntelliJ IDEA doesn't work well with applying plugins to script plugins in project sources. If a script plugin's code does not resolve, try restarting IntelliJ IDEA.
./gradlew build
(and tasks depending on it) somehow has to run twice to work. I haven't identified the cause yet.