mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 02:17:11 +00:00
617b0ac95c
* build: Update dependency io.papermc.paperweight.userdev:io.papermc.paperweight.userdev.gradle.plugin to v1.3.6 * build: Update paperweight Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: NotMyFault <mc.cache@web.de>
42 lines
1.0 KiB
Plaintext
42 lines
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://papermc.io/repo/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.6")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain {
|
|
(this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|