Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
plugin-yml 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephan-gh committed Jun 19, 2023
1 parent 6df3f8b commit 68e314c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ plugin-yml `0.5.2` still supports Gradle 5.0+.

```groovy
plugins {
id 'net.minecrell.plugin-yml.bukkit' version '0.5.3'
id 'net.minecrell.plugin-yml.bukkit' version '0.6.0'
}
dependencies {
Expand Down Expand Up @@ -95,7 +95,7 @@ bukkit {
```kotlin
plugins {
java // or `kotlin("jvm") version "..."`
id("net.minecrell.plugin-yml.bukkit") version "0.5.3"
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
}

dependencies {
Expand Down Expand Up @@ -166,7 +166,7 @@ bukkit {
```groovy
plugins {
id 'java'
id 'net.minecrell.plugin-yml.paper' version '0.6.0-SNAPSHOT'
id 'net.minecrell.plugin-yml.paper' version '0.6.0'
}
repositories {
Expand Down Expand Up @@ -283,7 +283,7 @@ import net.minecrell.pluginyml.paper.PaperPluginDescription

plugins {
java // or `kotlin("jvm") version "..."`
id("net.minecrell.plugin-yml.paper") version "0.6.0-SNAPSHOT"
id("net.minecrell.plugin-yml.paper") version "0.6.0"
}

repositories {
Expand Down Expand Up @@ -397,7 +397,7 @@ paper {

```groovy
plugins {
id 'net.minecrell.plugin-yml.bungee' version '0.5.3'
id 'net.minecrell.plugin-yml.bungee' version '0.6.0'
}
dependencies {
Expand Down Expand Up @@ -429,7 +429,7 @@ bungee {
```kotlin
plugins {
java // or `kotlin("jvm") version "..."`
id("net.minecrell.plugin-yml.bungee") version "0.5.3"
id("net.minecrell.plugin-yml.bungee") version "0.6.0"
}

dependencies {
Expand Down Expand Up @@ -463,7 +463,7 @@ bungee {

```groovy
plugins {
id 'net.minecrell.plugin-yml.nukkit' version '0.5.3'
id 'net.minecrell.plugin-yml.nukkit' version '0.6.0'
}
nukkit {
Expand Down Expand Up @@ -517,7 +517,7 @@ nukkit {
```kotlin
plugins {
java // or `kotlin("jvm") version "..."`
id("net.minecrell.plugin-yml.nukkit") version "0.5.3"
id("net.minecrell.plugin-yml.nukkit") version "0.6.0"
}

nukkit {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = net.minecrell
name = plugin-yml
version = 0.6.0-SNAPSHOT
version = 0.6.0
description = A Gradle plugin that generates plugin.yml for Bukkit/Paper/BungeeCord/Nukkit plugins based on the Gradle project
url = https://github.com/Minecrell/plugin-yml

0 comments on commit 68e314c

Please sign in to comment.