Skip to content

Commit

Permalink
release: Version 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Apr 23, 2024
1 parent ceb4098 commit e2c2e8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ In `build.gradle.kts`:
```kotlin
plugins {
// Apply the plugin
id("xyz.jpenilla.run-paper") version "2.2.2"
id("xyz.jpenilla.run-paper") version "2.2.4"
}

tasks {
runServer {
// Configure the Minecraft version for our task.
// This is the only required configuration besides applying the plugin.
// Your plugin's jar (or shadowJar if present) will be used automatically.
minecraftVersion("1.20.2")
minecraftVersion("1.20.4")
}
}
```
Expand All @@ -45,15 +45,15 @@ In `build.gradle.kts`:
```kotlin
plugins {
// Apply the plugin
id("xyz.jpenilla.run-velocity") version "2.2.2"
id("xyz.jpenilla.run-velocity") version "2.2.4"
}

tasks {
runVelocity {
// Configure the Velocity version for our task.
// This is the only required configuration besides applying the plugin.
// Your plugin's jar (or shadowJar if present) will be used automatically.
velocityVersion("3.2.0-SNAPSHOT")
velocityVersion("3.3.0-SNAPSHOT")
}
}
```
Expand All @@ -73,15 +73,15 @@ In `build.gradle.kts`:
```kotlin
plugins {
// Apply the plugin
id("xyz.jpenilla.run-waterfall") version "2.2.2"
id("xyz.jpenilla.run-waterfall") version "2.2.4"
}

tasks {
runWaterfall {
// Configure the Waterfall version for our task.
// This is the only required configuration besides applying the plugin.
// Your plugin's jar (or shadowJar if present) will be used automatically.
waterfallVersion("1.19")
waterfallVersion("1.20")
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "xyz.jpenilla"
version = "2.2.4-SNAPSHOT"
version = "2.2.4"
description = "Gradle plugins adding run tasks for Minecraft server and proxy software"

repositories {
Expand Down

0 comments on commit e2c2e8f

Please sign in to comment.