Skip to content

Commit e8aeca7

Browse files
authored
Merge pull request #198 from KyoriPowered/renovate/gradle-and-github-actions
chore(deps): Update gradle and github actions
2 parents 1801ef8 + 889c578 commit e8aeca7

File tree

5 files changed

+17
-18
lines changed

5 files changed

+17
-18
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ plugins {
1515
// Adventure version
1616
ext.adventure = "4.13.1"
1717

18-
group 'net.kyori'
19-
version '4.3.5-SNAPSHOT'
20-
description 'Legacy platform integrations for the adventure UI library'
18+
group = 'net.kyori'
19+
version = '4.3.5-SNAPSHOT'
20+
description = 'Legacy platform integrations for the adventure UI library'
2121

2222
indraSonatype {
2323
useAlternateSonatypeOSSHost("s01")

gradle/wrapper/gradle-wrapper.properties

+1-1
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.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

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

platform-bukkit/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ dependencies {
1818

1919
javadoc {
2020
options.links(
21-
"https://jd.papermc.io/paper/1.15"
21+
"https://jd.papermc.io/paper/1.15.2/"
2222
)
2323
}

settings.gradle

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.gradle.api.initialization.resolve.RepositoriesMode
22

33
plugins {
4-
id "org.gradle.toolchains.foojay-resolver-convention" version "0.8.0"
4+
id "org.gradle.toolchains.foojay-resolver-convention" version "0.9.0"
55
}
66

77
rootProject.name = 'adventure-platform-parent'
@@ -11,31 +11,31 @@ dependencyResolutionManagement {
1111
repositories {
1212
mavenCentral()
1313
maven {
14-
name "sonatypeSnapshots"
15-
url "https://oss.sonatype.org/content/repositories/snapshots/"
14+
name = "sonatypeSnapshots"
15+
url = "https://oss.sonatype.org/content/repositories/snapshots/"
1616
mavenContent { snapshotsOnly() }
1717
}
1818
maven {
19-
name "sponge"
20-
url 'https://repo.spongepowered.org/repository/maven-public/'
19+
name = "sponge"
20+
url = 'https://repo.spongepowered.org/repository/maven-public/'
2121
mavenContent { includeGroup "org.spongepowered" }
2222
}
2323
maven {
24-
name 'viaversion'
25-
url 'https://repo.viaversion.com'
24+
name = 'viaversion'
25+
url = 'https://repo.viaversion.com'
2626
mavenContent { includeGroup "com.viaversion" }
2727
}
2828
maven {
29-
name "papermc"
30-
url 'https://repo.papermc.io/repository/maven-public/'
29+
name = "papermc"
30+
url = 'https://repo.papermc.io/repository/maven-public/'
3131
mavenContent {
3232
includeGroup "io.papermc.paper"
3333
includeGroup "com.destroystokyo.paper"
3434
}
3535
}
3636
maven {
37-
name "minecraft-libraries"
38-
url "https://libraries.minecraft.net"
37+
name = "minecraft-libraries"
38+
url = "https://libraries.minecraft.net"
3939
mavenContent {
4040
includeGroup "com.mojang"
4141
}

0 commit comments

Comments
 (0)