mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-14 18:26:11 -04:00
27 lines
626 B
Kotlin
27 lines
626 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
`java-library`
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("projectConfigPlugin") {
|
|
id = "projectConfig"
|
|
implementationClass = "ProjectConfigPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.android.tools.build:gradle:9.1.0")
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10")
|
|
implementation("org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.2.10")
|
|
implementation("org.jetbrains.kotlin:kotlin-serialization:2.2.10")
|
|
implementation("com.squareup:javapoet:1.13.0")
|
|
}
|