Skip to content

Commit

Permalink
release: Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Feb 25, 2021
1 parent 304efe4 commit dfdde06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "org.spongepowered"
version = "1.0-SNAPSHOT"
version = "1.0.0"

subprojects {
plugins.apply {
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit dfdde06

Please sign in to comment.