Skip to content

Commit af3a27f

Browse files
committed
release: Version 2.2.0
1 parent fc62fc7 commit af3a27f

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,5 @@ jobs:
4848
env:
4949
ORG_GRADLE_PROJECT_pluginPortalApiKey: "${{ secrets.GRADLE_PLUGIN_PORTAL_KEY }}"
5050
ORG_GRADLE_PROJECT_pluginPortalApiSecret: "${{ secrets.GRADLE_PLUGIN_PORTAL_SECRET }}"
51+
ORG_GRADLE_PROJECT_signingKey: "${{ secrets.SIGNING_KEY }}"
52+
ORG_GRADLE_PROJECT_signingPassword: "${{ secrets.SIGNING_PASSWORD }}"

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ In `build.gradle.kts`:
1717
```kotlin
1818
plugins {
1919
// Apply the plugin
20-
id("xyz.jpenilla.run-paper") version "2.1.0"
20+
id("xyz.jpenilla.run-paper") version "2.2.0"
2121
}
2222

2323
tasks {
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.19.2")
28+
minecraftVersion("1.20.1")
2929
}
3030
}
3131
```
@@ -45,15 +45,15 @@ In `build.gradle.kts`:
4545
```kotlin
4646
plugins {
4747
// Apply the plugin
48-
id("xyz.jpenilla.run-velocity") version "2.1.0"
48+
id("xyz.jpenilla.run-velocity") version "2.2.0"
4949
}
5050

5151
tasks {
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.1.2-SNAPSHOT")
56+
velocityVersion("3.2.0-SNAPSHOT")
5757
}
5858
}
5959
```
@@ -73,7 +73,7 @@ In `build.gradle.kts`:
7373
```kotlin
7474
plugins {
7575
// Apply the plugin
76-
id("xyz.jpenilla.run-waterfall") version "2.1.0"
76+
id("xyz.jpenilla.run-waterfall") version "2.2.0"
7777
}
7878

7979
tasks {

plugin/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "xyz.jpenilla"
12-
version = "2.2.0-SNAPSHOT"
12+
version = "2.2.0"
1313
description = "Gradle plugins adding run tasks for Minecraft server and proxy software"
1414

1515
repositories {
@@ -60,6 +60,7 @@ indra {
6060
}
6161
}
6262
}
63+
signWithKeyFromProperties("signingKey", "signingPassword")
6364
}
6465

6566
indraSpotlessLicenser {

0 commit comments

Comments
 (0)