Skip to content

Commit

Permalink
fix(build): issue replacing version in resources, remove use of bloss…
Browse files Browse the repository at this point in the history
…om (#104)
  • Loading branch information
joshuasing authored Jul 8, 2023
1 parent 00a4fdc commit 9548f99
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ body:
value: |
Operating System: <!-- e.g. Windows 11 or Ubuntu 22.04 -->
Platform: <!-- e.g. BungeeCord 1.20 -->
UltraStaffChat Version: <!-- e.g. 5.2.0 -->
UltraStaffChat Version: <!-- e.g. 5.2.1 -->
render: Markdown
validations:
required: true
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ address security vulnerabilities that affect the most recent version of this plu

| Version | Supported |
|-----------|--------------------|
| `5.2.0` | :white_check_mark: |
| < `5.2.0` | :x: |
| `5.2.x` | :white_check_mark: |
| < `5.2.x` | :x: |

### Reporting a Vulnerability

Expand Down
1 change: 0 additions & 1 deletion build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ repositories {
dependencies {
implementation(libs.build.indra.common)
implementation(libs.build.indra.publishing)
implementation(libs.build.blossom)
implementation(libs.build.errorprone.plugin)
}

Expand Down
7 changes: 4 additions & 3 deletions build-logic/src/main/kotlin/ultrastaffchat.common.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ plugins {
id("ultrastaffchat.publishing")
id("net.kyori.indra")
id("net.kyori.indra.git")
id("net.kyori.blossom")
id("net.ltgt.errorprone")
}

Expand All @@ -35,8 +34,10 @@ indra {
}
}

blossom {
replaceToken("@version@", rootProject.version)
tasks.processResources {
filter {
it.replace("@version@", rootProject.version as String)
}
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ plugins {
}

group = "dev.hypera"
version = "5.2.0"
version = "5.2.1"
description = "A fully customisable staff communication plugin for BungeeCord!"

repositories {
Expand Down
2 changes: 0 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ annotations = "24.0.1"

# Build
build-indra = "3.1.1"
build-blossom = "1.3.1"
build-errorprone = "2.19.1"
build-errorprone-plugin = "3.1.0"
build-shadow = "8.1.1"
Expand All @@ -41,7 +40,6 @@ annotations = { module = "org.jetbrains:annotations", version.ref = "annotations
# Build
build-indra-common = { module = "net.kyori:indra-common", version.ref = "build-indra" }
build-indra-publishing = { module = "net.kyori:indra-publishing-gradle-plugin", version.ref = "build-indra" }
build-blossom = { module = "net.kyori:blossom", version.ref = "build-blossom" }
build-errorprone-plugin = { module = "net.ltgt.gradle:gradle-errorprone-plugin", version.ref = "build-errorprone-plugin" }
build-errorprone-core = { module = "com.google.errorprone:error_prone_core", version.ref = "build-errorprone" }
build-errorprone-annotations = { module = "com.google.errorprone:error_prone_annotations", version.ref = "build-errorprone" }
Expand Down

0 comments on commit 9548f99

Please sign in to comment.