You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
id("de.fuerstenau.buildconfig")
|
|
|
|
id("com.gradle.plugin-publish")
|
|
|
|
id("java-gradle-plugin")
|
|
|
|
id("maven-publish")
|
|
|
|
}
|
|
|
|
|
|
|
|
gradlePluginConfig {
|
|
|
|
pluginId = "org.jetbrains.compose"
|
|
|
|
artifactId = "compose-gradle-plugin"
|
|
|
|
displayName = "JetBrains Compose Plugin"
|
|
|
|
description = "JetBrains Compose Gradle plugin for easy configuration"
|
|
|
|
implementationClass = "org.jetbrains.compose.ComposePlugin"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildConfig {
|
|
|
|
packageName = "org.jetbrains.compose"
|
|
|
|
clsName = "ComposeBuildConfig"
|
|
|
|
buildConfigField("String", "composeVersion", BuildProperties.composeVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly(gradleApi())
|
|
|
|
compileOnly(localGroovy())
|
|
|
|
compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin")
|
|
|
|
testImplementation(gradleTestKit())
|
|
|
|
}
|