mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-25 12:05:14 +01:00
35 lines
934 B
Plaintext
35 lines
934 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = "EngineHub Repository"
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(gradleApi())
|
|
implementation(libs.licenser)
|
|
implementation(libs.grgit)
|
|
implementation(libs.shadow)
|
|
implementation(libs.jfrog.buildinfo)
|
|
implementation(libs.paperweight)
|
|
implementation(libs.gson)
|
|
|
|
constraints {
|
|
val asmVersion = "[${libs.versions.minimumAsm.get()},)"
|
|
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:[${libs.versions.minimumJdependency.get()},)") {
|
|
because("Need Java 21 support in shadow")
|
|
}
|
|
}
|
|
}
|