Skip to content

Commit

Permalink
Merge pull request #8 from dwursteisen/main
Browse files Browse the repository at this point in the history
Configure gradle plugin publication
  • Loading branch information
dwursteisen committed May 8, 2021
2 parents bffa8c1 + 5fd5075 commit 3c5e5b5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,37 @@ gradlePlugin {
}
}

pluginBundle {
website = "https://github.com/minigdx/minigdx-gradle-plugin"
vcsUrl = "https://github.com/minigdx/minigdx-gradle-plugin"

(plugins) {
// first plugin
"common" {
// id is captured from java-gradle-plugin configuration
displayName = "MiniGDX plugin"
description =
"""Configure your gradle project for creating a minigdx game.""".trimMargin()
tags = listOf("minigdx")
}

"jvm" {
displayName = "MiniGDX Kotlin JVM Developer plugin"
description =
"""Configure your gradle project for creating a minigdx game that target the JVM platform.""".trimMargin()
tags = listOf("minigdx", "kotlin", "jvm")
}

"js" {
displayName = "MiniGDX Kotlin Multiplatform Developer plugin"
description =
"""Configure your gradle project for creating a minigdx game that target the web platform.
""".trimMargin()
tags = listOf("minigdx", "kotlin", "js")
}
}
}

// Add a source set for the functional test suite
val functionalTestSourceSet = sourceSets.create("functionalTest") {
}
Expand Down

0 comments on commit 3c5e5b5

Please sign in to comment.