mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2025-01-18 12:34:20 +08:00
Add foojay to download JVMs, update to Gradle 8.5
This commit is contained in:
parent
329524288d
commit
cd8bca9a43
@ -51,12 +51,12 @@
|
||||
proj.apply(plugin = "jacoco")
|
||||
proj.plugins.withId("java") {
|
||||
executionData(
|
||||
fileTree(proj.buildDir.absolutePath).include("**/jacoco/*.exec")
|
||||
fileTree(proj.layout.buildDirectory).include("**/jacoco/*.exec")
|
||||
)
|
||||
sourceSets(proj.the<JavaPluginExtension>().sourceSets["main"])
|
||||
reports {
|
||||
xml.required.set(true)
|
||||
xml.outputLocation.set(rootProject.buildDir.resolve("reports/jacoco/report.xml"))
|
||||
xml.outputLocation.set(rootProject.layout.buildDirectory.file("reports/jacoco/report.xml"))
|
||||
html.required.set(true)
|
||||
}
|
||||
dependsOn(proj.tasks.named("test"))
|
||||
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
@ -1,3 +1,7 @@
|
||||
plugins {
|
||||
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
||||
}
|
||||
|
||||
rootProject.name = "worldedit"
|
||||
|
||||
include("worldedit-libs")
|
||||
|
@ -88,7 +88,7 @@
|
||||
|
||||
configure<LicenseExtension> {
|
||||
exclude {
|
||||
it.file.startsWith(project.buildDir)
|
||||
it.file.startsWith(project.layout.buildDirectory.get().asFile)
|
||||
}
|
||||
}
|
||||
tasks.withType<Checkstyle>().configureEach {
|
||||
|
Loading…
Reference in New Issue
Block a user