mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 10:57:11 +00:00
29 lines
705 B
Plaintext
29 lines
705 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")
|
|
}
|