2019-09-22 22:42:26 +02:00
|
|
|
import java.util.Properties
|
|
|
|
|
2019-07-10 22:13:41 +02:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
2021-01-08 03:31:24 +01:00
|
|
|
kotlin("jvm") version embeddedKotlinVersion
|
2019-07-10 22:13:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-10-17 16:32:36 +02:00
|
|
|
mavenCentral()
|
2019-07-10 22:13:41 +02:00
|
|
|
gradlePluginPortal()
|
2020-04-01 03:13:32 +02:00
|
|
|
maven {
|
2021-01-21 13:34:33 +01:00
|
|
|
name = "EngineHub"
|
2020-04-01 03:13:32 +02:00
|
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
|
|
}
|
2019-07-10 22:13:41 +02:00
|
|
|
}
|
|
|
|
|
2019-09-22 22:42:26 +02:00
|
|
|
val properties = Properties().also { props ->
|
|
|
|
project.projectDir.resolveSibling("gradle.properties").bufferedReader().use {
|
|
|
|
props.load(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-10 22:13:41 +02:00
|
|
|
dependencies {
|
|
|
|
implementation(gradleApi())
|
2023-02-25 11:10:23 +01:00
|
|
|
implementation("org.ajoberstar.grgit:grgit-gradle:5.0.0")
|
2023-02-25 10:41:49 +01:00
|
|
|
implementation("gradle.plugin.com.github.johnrengelman:shadow:7.1.2")
|
2023-03-06 13:47:13 +01:00
|
|
|
implementation("io.papermc.paperweight.userdev:io.papermc.paperweight.userdev.gradle.plugin:1.5.3")
|
2019-07-10 22:13:41 +02:00
|
|
|
}
|
2021-11-25 18:23:18 +01:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain {
|
|
|
|
(this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
}
|
|
|
|
}
|