Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
30 Zeilen
793 B
Plaintext
30 Zeilen
793 B
Plaintext
|
plugins {
|
||
|
`kotlin-dsl`
|
||
|
kotlin("jvm") version embeddedKotlinVersion
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
|
||
|
configurations.all {
|
||
|
resolutionStrategy {
|
||
|
// Fabric needs this.
|
||
|
force(
|
||
|
"commons-io:commons-io:2.5",
|
||
|
"org.ow2.asm:asm:7.1",
|
||
|
"org.ow2.asm:asm-commons:7.1"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(gradleApi())
|
||
|
implementation("org.ajoberstar.grgit:grgit-gradle:3.1.1")
|
||
|
implementation("com.github.jengelman.gradle.plugins:shadow:5.1.0")
|
||
|
implementation("net.ltgt.apt-eclipse:net.ltgt.apt-eclipse.gradle.plugin:0.21")
|
||
|
implementation("net.ltgt.apt-idea:net.ltgt.apt-idea.gradle.plugin:0.21")
|
||
|
implementation("org.jfrog.buildinfo:build-info-extractor-gradle:4.9.7")
|
||
|
}
|