Skip to content

Commit

Permalink
release: Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Sep 21, 2023
1 parent fc62fc7 commit af3a27f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ jobs:
env:
ORG_GRADLE_PROJECT_pluginPortalApiKey: "${{ secrets.GRADLE_PLUGIN_PORTAL_KEY }}"
ORG_GRADLE_PROJECT_pluginPortalApiSecret: "${{ secrets.GRADLE_PLUGIN_PORTAL_SECRET }}"
ORG_GRADLE_PROJECT_signingKey: "${{ secrets.SIGNING_KEY }}"
ORG_GRADLE_PROJECT_signingPassword: "${{ secrets.SIGNING_PASSWORD }}"
10 changes: 5 additions & 5 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.1.0"
id("xyz.jpenilla.run-paper") version "2.2.0"
}

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.19.2")
minecraftVersion("1.20.1")
}
}
```
Expand All @@ -45,15 +45,15 @@ In `build.gradle.kts`:
```kotlin
plugins {
// Apply the plugin
id("xyz.jpenilla.run-velocity") version "2.1.0"
id("xyz.jpenilla.run-velocity") version "2.2.0"
}

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.1.2-SNAPSHOT")
velocityVersion("3.2.0-SNAPSHOT")
}
}
```
Expand All @@ -73,7 +73,7 @@ In `build.gradle.kts`:
```kotlin
plugins {
// Apply the plugin
id("xyz.jpenilla.run-waterfall") version "2.1.0"
id("xyz.jpenilla.run-waterfall") version "2.2.0"
}

tasks {
Expand Down
3 changes: 2 additions & 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.0-SNAPSHOT"
version = "2.2.0"
description = "Gradle plugins adding run tasks for Minecraft server and proxy software"

repositories {
Expand Down Expand Up @@ -60,6 +60,7 @@ indra {
}
}
}
signWithKeyFromProperties("signingKey", "signingPassword")
}

indraSpotlessLicenser {
Expand Down

0 comments on commit af3a27f

Please sign in to comment.