mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 10:57:11 +00:00
33 lines
1017 B
Plaintext
33 lines
1017 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
kotlin("jvm") version embeddedKotlinVersion
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = "Forge Maven"
|
|
url = uri("https://files.minecraftforge.net/maven")
|
|
}
|
|
}
|
|
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
// Fabric needs this.
|
|
force("commons-io:commons-io:2.5", "org.ow2.asm:asm:7.1")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(gradleApi())
|
|
implementation("gradle.plugin.net.minecrell:licenser:0.4.1")
|
|
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")
|
|
implementation("gradle.plugin.org.spongepowered:spongegradle:0.9.0")
|
|
implementation("net.minecraftforge.gradle:ForgeGradle:3.0.130")
|
|
}
|