Add separate descriptions for all Gradle plugins

This commit is contained in:
Minecrell 2018-07-24 16:06:57 +02:00
parent 3b3c5dfcd6
commit ac4f48ec8b
3 changed files with 6 additions and 3 deletions

View file

@ -129,7 +129,7 @@ bukkit {
``` ```
</details> </details>
### Bungee ### BungeeCord
<details> <details>
<summary><strong>Groovy</strong></summary> <summary><strong>Groovy</strong></summary>

View file

@ -61,14 +61,17 @@ pluginBundle {
"bukkit" { "bukkit" {
id = "net.minecrell.plugin-yml.bukkit" id = "net.minecrell.plugin-yml.bukkit"
displayName = "plugin-yml (Bukkit)" displayName = "plugin-yml (Bukkit)"
description = "Generate plugin.yml for Bukkit plugins based on the Gradle project"
} }
"bungee" { "bungee" {
id = "net.minecrell.plugin-yml.bungee" id = "net.minecrell.plugin-yml.bungee"
displayName = "plugin-yml (Bungee)" displayName = "plugin-yml (BungeeCord)"
description = "Generate bungee.yml for BungeeCord plugins based on the Gradle project"
} }
"nukkit" { "nukkit" {
id = "net.minecrell.plugin-yml.nukkit" id = "net.minecrell.plugin-yml.nukkit"
displayName = "plugin-yml (Nukkit)" displayName = "plugin-yml (Nukkit)"
description = "Generate nukkit.yml for Nukkit plugins based on the Gradle project"
} }
} }
} }

View file

@ -1,5 +1,5 @@
group = net.minecrell group = net.minecrell
name = plugin-yml name = plugin-yml
version = 0.4.0-SNAPSHOT version = 0.4.0-SNAPSHOT
description = A Gradle plugin that generates plugin.yml for Bukkit/BungeeCord plugins based on the Gradle project description = A Gradle plugin that generates plugin.yml for Bukkit/BungeeCord/Nukkit plugins based on the Gradle project
url = https://github.com/Minecrell/plugin-yml url = https://github.com/Minecrell/plugin-yml