Skip to content

Commit 55839a7

Browse files
committed
chore: dependency updates
1 parent 409c9f1 commit 55839a7

File tree

9 files changed

+27
-16
lines changed

9 files changed

+27
-16
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Set up JDK 8
15-
uses: actions/setup-java@v3
15+
uses: actions/setup-java@v4
1616
with:
1717
distribution: 'temurin'
1818
java-version: 8

build-logic/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
repositories {
88
mavenCentral()
99
gradlePluginPortal()
10+
maven("https://maven.neoforged.net/releases")
1011
}
1112

1213
dependencies {

build-logic/src/main/kotlin/takenaka.base-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
22

33
plugins {
4-
id("org.cadixdev.licenser")
4+
id("net.neoforged.licenser")
55
id("com.github.ben-manes.versions")
66
`maven-publish`
77
`java-library`

gradle/libs.versions.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
2-
kotlin = "1.9.22"
3-
asm = "9.7"
4-
jackson = "2.17.1"
2+
kotlin = "1.9.24"
3+
asm = "9.7.1"
4+
jackson = "2.18.0"
55
kotlinpoet = "1.17.0"
66

77
[libraries]
@@ -14,16 +14,16 @@ jackson-datatype-jsr310 = { group = "com.fasterxml.jackson.datatype", name = "ja
1414
jackson-dataformat-xml = { group = "com.fasterxml.jackson.dataformat", name = "jackson-dataformat-xml", version.ref = "jackson" }
1515
mapping-io = { group = "net.fabricmc", name = "mapping-io", version = "0.4.2" }
1616
kotlin-logging-jvm = { group = "io.github.oshai", name = "kotlin-logging-jvm", version = "6.0.9" }
17-
slf4j-simple = { group = "org.slf4j", name = "slf4j-simple", version = "2.0.13" }
17+
slf4j-simple = { group = "org.slf4j", name = "slf4j-simple", version = "2.0.16" }
1818
kotlinx-coroutines-core-jvm = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core-jvm", version = "1.8.1" }
1919
kotlinx-html-jvm = { group = "org.jetbrains.kotlinx", name = "kotlinx-html-jvm", version = "0.11.0" }
2020
kotlinx-cli-jvm = { group = "org.jetbrains.kotlinx", name = "kotlinx-cli-jvm", version = "0.3.6" }
21-
jb-annotations = { group = "org.jetbrains", name = "annotations", version = "24.1.0" }
21+
jb-annotations = { group = "org.jetbrains", name = "annotations", version = "26.0.1" }
2222
javapoet = { group = "com.squareup", name = "javapoet", version = "1.13.0" }
2323
kotlinpoet = { group = "com.squareup", name = "kotlinpoet", version.ref = "kotlinpoet" }
2424
kotlinpoet-javapoet = { group = "com.squareup", name = "kotlinpoet-javapoet", version.ref = "kotlinpoet" }
25-
build-licenser = { group = "org.cadixdev.licenser", name = "org.cadixdev.licenser.gradle.plugin", version = "0.6.1" }
26-
build-gradle-versions = { group = "com.github.ben-manes", name = "gradle-versions-plugin", version = "0.46.0" }
25+
build-licenser = { group = "net.neoforged.licenser", name = "licenser", version = "0.7.5" }
26+
build-gradle-versions = { group = "com.github.ben-manes", name = "gradle-versions-plugin", version = "0.51.0" }
2727
build-kotlin-jvm = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlin" }
2828

2929
[bundles]
@@ -32,6 +32,6 @@ asm = ["asm", "asm-commons"]
3232
jackson = ["jackson-module-kotlin", "jackson-datatype-jsr310", "jackson-dataformat-xml"]
3333

3434
[plugins]
35-
shadow = { id = "io.github.goooler.shadow", version = "8.1.7" }
36-
gradle-plugin-publish = { id = "com.gradle.plugin-publish", version = "1.2.1" }
37-
build-config = { id = "com.github.gmazzo.buildconfig", version = "5.3.5" }
35+
shadow = { id = "com.gradleup.shadow", version = "8.3.3" }
36+
gradle-plugin-publish = { id = "com.gradle.plugin-publish", version = "1.3.0" }
37+
build-config = { id = "com.github.gmazzo.buildconfig", version = "5.5.0" }

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -55,7 +57,7 @@
5557
# Darwin, MinGW, and NonStop.
5658
#
5759
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5961
# within the Gradle project.
6062
#
6163
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

settings.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
pluginManagement {
22
includeBuild("build-logic")
3+
4+
repositories {
5+
gradlePluginPortal()
6+
maven("https://maven.neoforged.net/releases")
7+
}
38
}
49

510
fun includeComposite(name: String, vararg modules: String) {

0 commit comments

Comments
 (0)