Skip to content

Commit

Permalink
build: Update readme for 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Jan 20, 2022
1 parent d46aade commit f72aff6
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A suite of plugins for Sponge plugin developers, and Sponge's own projects.

## `org.spongepowered.gradle.plugin`
## [`org.spongepowered.gradle.plugin`](https://plugins.gradle.org/plugin/org.spongepowered.gradle.plugin)

The gradle plugin to assist with plugin development.

Expand All @@ -14,16 +14,20 @@ Quick start: (see [sponge-plugin-template](https://github.com/SpongePowered/spon
```kotlin
plugins {
// [...any plugins...]
id("org.spongepowered.gradle.plugin") version "1.0.1"
id("org.spongepowered.gradle.plugin") version "2.0.1"
}

sponge {
apiVersion("8.0.0")
loader {
name(PluginLoaders.JAVA_PLAIN)
version("1.0")
}
license("CHANGEME")
plugin("example") {
loader(PluginLoaders.JAVA_PLAIN)
displayName("Example")
version("0.1")
mainClass("org.spongepowered.example.Example")
entrypoint("org.spongepowered.example.Example")
description("Just testing things...")
links {
homepage("https://spongepowered.org")
Expand Down

0 comments on commit f72aff6

Please sign in to comment.