@@ -17,15 +17,15 @@ In `build.gradle.kts`:
1717``` kotlin
1818plugins {
1919 // Apply the plugin
20- id(" xyz.jpenilla.run-paper" ) version " 2.2.2 "
20+ id(" xyz.jpenilla.run-paper" ) version " 2.2.4 "
2121}
2222
2323tasks {
2424 runServer {
2525 // Configure the Minecraft version for our task.
2626 // This is the only required configuration besides applying the plugin.
2727 // Your plugin's jar (or shadowJar if present) will be used automatically.
28- minecraftVersion(" 1.20.2 " )
28+ minecraftVersion(" 1.20.4 " )
2929 }
3030}
3131```
@@ -45,15 +45,15 @@ In `build.gradle.kts`:
4545``` kotlin
4646plugins {
4747 // Apply the plugin
48- id(" xyz.jpenilla.run-velocity" ) version " 2.2.2 "
48+ id(" xyz.jpenilla.run-velocity" ) version " 2.2.4 "
4949}
5050
5151tasks {
5252 runVelocity {
5353 // Configure the Velocity version for our task.
5454 // This is the only required configuration besides applying the plugin.
5555 // Your plugin's jar (or shadowJar if present) will be used automatically.
56- velocityVersion(" 3.2 .0-SNAPSHOT" )
56+ velocityVersion(" 3.3 .0-SNAPSHOT" )
5757 }
5858}
5959```
@@ -73,15 +73,15 @@ In `build.gradle.kts`:
7373``` kotlin
7474plugins {
7575 // Apply the plugin
76- id(" xyz.jpenilla.run-waterfall" ) version " 2.2.2 "
76+ id(" xyz.jpenilla.run-waterfall" ) version " 2.2.4 "
7777}
7878
7979tasks {
8080 runWaterfall {
8181 // Configure the Waterfall version for our task.
8282 // This is the only required configuration besides applying the plugin.
8383 // Your plugin's jar (or shadowJar if present) will be used automatically.
84- waterfallVersion(" 1.19 " )
84+ waterfallVersion(" 1.20 " )
8585 }
8686}
8787```
0 commit comments