Skip to content

Commit 0c68739

Browse files
committed
build updates
1 parent 8a4d2e8 commit 0c68739

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

build-logic/settings.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import ca.stellardrift.build.configurate.ConfigFormats
22
import ca.stellardrift.build.configurate.catalog.PolyglotVersionCatalogExtension
33

4-
enableFeaturePreview("VERSION_CATALOGS")
5-
64
plugins {
7-
id("ca.stellardrift.polyglot-version-catalogs") version "5.0.0"
5+
id("ca.stellardrift.polyglot-version-catalogs") version "5.0.1"
86
}
97

108
extensions.configure<PolyglotVersionCatalogExtension> {

build-logic/src/main/kotlin/extensions.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ import org.gradle.api.provider.Provider
44
// set by GitHub Actions
55
val Project.ci: Provider<Boolean>
66
get() = providers.environmentVariable("CI")
7-
.forUseAtConfigurationTime()
87
.map { it.toBoolean() }
98
.orElse(false)
109

1110
val Project.compileExamples: Boolean
1211
get() = providers.gradleProperty("compile-examples")
13-
.forUseAtConfigurationTime()
1412
.isPresent

examples/example-bukkit/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tasks {
3030
dependsOn(shadowJar)
3131
}
3232
runServer {
33-
minecraftVersion("1.18.1")
33+
minecraftVersion("1.18.2")
3434
runDirectory(file("run/latest"))
3535
javaLauncher.set(project.javaToolchains.launcherFor {
3636
languageVersion.set(JavaLanguageVersion.of(17))
@@ -40,7 +40,7 @@ tasks {
4040
// Setup a run task for each supported version
4141
mapOf(
4242
setOf("1.8.8", "1.9.4", "1.10.2", "1.11.2") to 11,
43-
setOf("1.12.2", "1.13.2", "1.14.4", "1.15.2", "1.16.5", "1.17.1", "1.18.1") to 17,
43+
setOf("1.12.2", "1.13.2", "1.14.4", "1.15.2", "1.16.5", "1.17.1", "1.18.2") to 17,
4444
).forEach { (minecraftVersions, javaVersion) ->
4545
for (version in minecraftVersions) {
4646
createVersionedRun(version, javaVersion)

gradle/wrapper/gradle-wrapper.jar

285 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pluginManagement {
1111
}
1212

1313
plugins {
14-
id("ca.stellardrift.polyglot-version-catalogs") version "5.0.0"
14+
id("ca.stellardrift.polyglot-version-catalogs") version "5.0.1"
1515
}
1616

1717
rootProject.name = "cloud"

0 commit comments

Comments
 (0)