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.
21 lines
631 B
21 lines
631 B
4 years ago
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
id("com.gradle.plugin-publish")
|
||
|
id("java-gradle-plugin")
|
||
|
id("maven-publish")
|
||
|
}
|
||
|
|
||
|
gradlePluginConfig {
|
||
|
pluginId = "org.jetbrains.compose.desktop.application"
|
||
|
artifactId = "compose-desktop-application-gradle-plugin"
|
||
|
displayName = "Jetpack Compose Desktop Application Plugin"
|
||
|
description = "Plugin for creating native distributions and run configurations"
|
||
|
implementationClass = "org.jetbrains.compose.desktop.application.ApplicationPlugin"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly(gradleApi())
|
||
|
compileOnly(kotlin("gradle-plugin-api"))
|
||
|
compileOnly(kotlin("gradle-plugin"))
|
||
|
}
|