Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-02 17:40:09 +01:00
b432faef36
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
42 Zeilen
1.0 KiB
Plaintext
42 Zeilen
1.0 KiB
Plaintext
import java.util.Properties
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
kotlin("jvm") version embeddedKotlinVersion
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = "EngineHub"
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
}
|
|
maven {
|
|
name = "PaperMC"
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
|
content {
|
|
includeGroupByRegex("io\\.papermc\\..*")
|
|
}
|
|
}
|
|
}
|
|
|
|
val properties = Properties().also { props ->
|
|
project.projectDir.resolveSibling("gradle.properties").bufferedReader().use {
|
|
props.load(it)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(gradleApi())
|
|
implementation("org.ajoberstar.grgit:grgit-gradle:4.1.1")
|
|
implementation("gradle.plugin.com.github.johnrengelman:shadow:7.1.2")
|
|
implementation("io.papermc.paperweight.userdev:io.papermc.paperweight.userdev.gradle.plugin:1.3.11")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain {
|
|
(this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|