2019-09-22 20:42:26 +00:00
|
|
|
import java.util.Properties
|
|
|
|
|
2019-07-10 20:13:41 +00:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
2021-01-08 02:31:24 +00:00
|
|
|
kotlin("jvm") version embeddedKotlinVersion
|
2019-07-10 20:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-10-17 14:32:36 +00:00
|
|
|
mavenCentral()
|
2019-07-10 20:13:41 +00:00
|
|
|
gradlePluginPortal()
|
2020-04-01 01:13:32 +00:00
|
|
|
maven {
|
2021-01-21 12:34:33 +00:00
|
|
|
name = "EngineHub"
|
2020-04-01 01:13:32 +00:00
|
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
|
|
}
|
2019-07-10 20:13:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-22 20:42:26 +00:00
|
|
|
val properties = Properties().also { props ->
|
|
|
|
project.projectDir.resolveSibling("gradle.properties").bufferedReader().use {
|
|
|
|
props.load(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-10 20:13:41 +00:00
|
|
|
dependencies {
|
|
|
|
implementation(gradleApi())
|
2024-03-02 11:02:08 +00:00
|
|
|
implementation("org.ajoberstar.grgit:grgit-gradle:5.2.2")
|
2024-08-25 09:43:56 +00:00
|
|
|
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.0")
|
2024-08-11 19:23:45 +00:00
|
|
|
implementation("io.papermc.paperweight.userdev:io.papermc.paperweight.userdev.gradle.plugin:1.7.2")
|
2024-05-19 11:32:18 +00:00
|
|
|
constraints {
|
|
|
|
val asmVersion = "[9.7,)"
|
|
|
|
implementation("org.ow2.asm:asm:$asmVersion") {
|
|
|
|
because("Need Java 21 support in shadow")
|
|
|
|
}
|
|
|
|
implementation("org.ow2.asm:asm-commons:$asmVersion") {
|
|
|
|
because("Need Java 21 support in shadow")
|
|
|
|
}
|
|
|
|
implementation("org.vafer:jdependency:[2.10,)") {
|
|
|
|
because("Need Java 21 support in shadow")
|
|
|
|
}
|
|
|
|
}
|
2019-07-10 20:13:41 +00:00
|
|
|
}
|
2021-11-25 17:23:18 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain {
|
2024-05-19 11:32:18 +00:00
|
|
|
(this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(21))
|
2021-11-25 17:23:18 +00:00
|
|
|
}
|
|
|
|
}
|