File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 48
48
env :
49
49
ORG_GRADLE_PROJECT_pluginPortalApiKey : " ${{ secrets.GRADLE_PLUGIN_PORTAL_KEY }}"
50
50
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 }}"
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ In `build.gradle.kts`:
17
17
``` kotlin
18
18
plugins {
19
19
// Apply the plugin
20
- id(" xyz.jpenilla.run-paper" ) version " 2.1 .0"
20
+ id(" xyz.jpenilla.run-paper" ) version " 2.2 .0"
21
21
}
22
22
23
23
tasks {
24
24
runServer {
25
25
// Configure the Minecraft version for our task.
26
26
// This is the only required configuration besides applying the plugin.
27
27
// Your plugin's jar (or shadowJar if present) will be used automatically.
28
- minecraftVersion(" 1.19.2 " )
28
+ minecraftVersion(" 1.20.1 " )
29
29
}
30
30
}
31
31
```
@@ -45,15 +45,15 @@ In `build.gradle.kts`:
45
45
``` kotlin
46
46
plugins {
47
47
// Apply the plugin
48
- id(" xyz.jpenilla.run-velocity" ) version " 2.1 .0"
48
+ id(" xyz.jpenilla.run-velocity" ) version " 2.2 .0"
49
49
}
50
50
51
51
tasks {
52
52
runVelocity {
53
53
// Configure the Velocity version for our task.
54
54
// This is the only required configuration besides applying the plugin.
55
55
// Your plugin's jar (or shadowJar if present) will be used automatically.
56
- velocityVersion(" 3.1.2 -SNAPSHOT" )
56
+ velocityVersion(" 3.2.0 -SNAPSHOT" )
57
57
}
58
58
}
59
59
```
@@ -73,7 +73,7 @@ In `build.gradle.kts`:
73
73
``` kotlin
74
74
plugins {
75
75
// Apply the plugin
76
- id(" xyz.jpenilla.run-waterfall" ) version " 2.1 .0"
76
+ id(" xyz.jpenilla.run-waterfall" ) version " 2.2 .0"
77
77
}
78
78
79
79
tasks {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
}
10
10
11
11
group = " xyz.jpenilla"
12
- version = " 2.2.0-SNAPSHOT "
12
+ version = " 2.2.0"
13
13
description = " Gradle plugins adding run tasks for Minecraft server and proxy software"
14
14
15
15
repositories {
@@ -60,6 +60,7 @@ indra {
60
60
}
61
61
}
62
62
}
63
+ signWithKeyFromProperties(" signingKey" , " signingPassword" )
63
64
}
64
65
65
66
indraSpotlessLicenser {
You can’t perform that action at this time.
0 commit comments