Skip to content

Commit e73e936

Browse files
committed
Merge branch 'next'
2 parents 6cc5ab4 + faf19c6 commit e73e936

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ allprojects {
101101
}
102102

103103
kotlin {
104-
jvmToolchain(17)
104+
jvmToolchain(21)
105105
}
106106
}
107107

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[versions]
2-
kotlin = "1.9.23"
2+
kotlin = "2.0.0"
33
shadow = "8.1.1"
4-
run = "2.2.3"
5-
paperweight = "1.5.11"
4+
run = "2.3.0"
5+
paperweight = "1.7.1"
66

77
# Minecraft Software
8-
folia = "1.20.4-R0.1-SNAPSHOT"
9-
paper = "1.20.4-R0.1-SNAPSHOT"
8+
folia = "1.20.6-R0.1-SNAPSHOT"
9+
paper = "1.20.6-R0.1-SNAPSHOT"
1010
velocity = "3.3.0-SNAPSHOT"
1111

1212
# Plugin Values

gradle/templates/folia/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ tasks {
4343
}
4444

4545
withType<Copy> {
46+
outputs.upToDateWhen { false }
47+
4648
val props = listOf(
4749
"main-class",
4850
"description",

gradle/templates/paper/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ tasks {
4343
}
4444

4545
withType<Copy> {
46+
outputs.upToDateWhen { false }
47+
4648
val props = listOf(
4749
"main-class",
4850
"description",

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

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ projectSettings {
2626
mainClass = "TemplatePlugin"
2727
description = "A simple Template-Plugin using Kotlin as main language"
2828
dependencies {
29-
add("KotlinProvider")
29+
add("CoreControl")
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)