diff --git a/README.md b/README.md index 0833a1a..1d0545f 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,12 @@ The gradle plugin to assist with plugin development. - Generates plugin metadata files for the `main` source set - Adds a task to run a SpongeVanilla server -Example: +Quick start: (see [sponge-plugin-template](https://github.com/SpongePowered/sponge-plugin-template) for a full example) ```kotlin plugins { // [...any plugins...] - id("org.spongepowered.gradle.plugin") version "1.0-SNAPSHOT" + id("org.spongepowered.gradle.plugin") version "1.0.0" } sponge { diff --git a/build.gradle.kts b/build.gradle.kts index f3f28cf..f1347a9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "org.spongepowered" -version = "1.0-SNAPSHOT" +version = "1.0.0" subprojects { plugins.apply { @@ -70,6 +70,10 @@ subprojects { } } + extensions.configure(com.gradle.publish.PluginBundleExtension::class) { + website = "https://spongepowered.org/" + } + extensions.configure(LicenseExtension::class) { val name: String by project val organization: String by project