Skip to content

Commit 559d3b7

Browse files
committed
Misc gradle updates
1 parent d6c7589 commit 559d3b7

7 files changed

Lines changed: 34 additions & 25 deletions

File tree

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Documentation: https://www.git-scm.com/docs/gitattributes
2+
3+
# Set default behavior to automatically normalize line endings.
4+
* text=auto eol=lf
5+
6+
# Enforce CRLF line endings in Windows batch scripts to avoid issues.
7+
*.cmd text eol=crlf
8+
*.bat text eol=crlf

code/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cloud = "2.0.0"
55
cloudMinecraft = "2.0.0-beta.10"
66
cloudProcessors = "1.0.0-beta.3"
77

8-
paper = "1.20.6-R0.1-SNAPSHOT"
8+
paper = "1.21.6-R0.1-SNAPSHOT"
99

1010
[plugins]
1111
indra = { id = "net.kyori.indra", version.ref = "indra" }
-19.5 KB
Binary file not shown.

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

code/gradlew

Lines changed: 7 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

code/gradlew.bat

Lines changed: 14 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

code/settings.gradle.kts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,15 @@ pluginManagement {
55
}
66

77
plugins {
8-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
8+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
99
}
1010

1111
dependencyResolutionManagement {
1212
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
1313
repositories {
1414
mavenCentral()
15-
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
16-
name = "sonatypeOssSnapshots"
17-
mavenContent {
18-
snapshotsOnly()
19-
}
15+
maven("https://central.sonatype.com/repository/maven-snapshots/") {
16+
mavenContent { snapshotsOnly() }
2017
}
2118
maven("https://m2.dv8tion.net/releases") {
2219
name = "dv8tion"

0 commit comments

Comments
 (0)