2019-09-22 20:42:26 +00:00
|
|
|
import java.util.Properties
|
|
|
|
|
2019-07-10 20:13:41 +00:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
kotlin("jvm") version embeddedKotlinVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
gradlePluginPortal()
|
2019-11-19 22:07:30 +00:00
|
|
|
// maven {
|
|
|
|
// name = "Forge Maven"
|
|
|
|
// url = uri("https://files.minecraftforge.net/maven")
|
|
|
|
// }
|
|
|
|
// maven {
|
|
|
|
// name = "Fabric"
|
|
|
|
// url = uri("https://maven.fabricmc.net/")
|
|
|
|
// }
|
|
|
|
// maven {
|
|
|
|
// name = "sponge"
|
|
|
|
// url = uri("https://repo.spongepowered.org/maven")
|
|
|
|
// }
|
2019-07-10 20:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy {
|
|
|
|
// Fabric needs this.
|
2019-07-15 16:14:02 +00:00
|
|
|
force(
|
2019-11-19 21:25:36 +00:00
|
|
|
"commons-io:commons-io:2.5",
|
|
|
|
"org.ow2.asm:asm:7.1",
|
|
|
|
"org.ow2.asm:asm-commons:7.1"
|
2019-07-15 16:14:02 +00:00
|
|
|
)
|
2019-07-10 20:13:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-22 20:42:26 +00:00
|
|
|
val properties = Properties().also { props ->
|
|
|
|
project.projectDir.resolveSibling("gradle.properties").bufferedReader().use {
|
|
|
|
props.load(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
val loomVersion: String = properties.getProperty("loom.version")
|
|
|
|
val mixinVersion: String = properties.getProperty("mixin.version")
|
|
|
|
|
2019-07-10 20:13:41 +00:00
|
|
|
dependencies {
|
|
|
|
implementation(gradleApi())
|
2019-11-19 22:07:30 +00:00
|
|
|
// implementation("gradle.plugin.net.minecrell:licenser:0.4.1")
|
2019-07-10 20:13:41 +00:00
|
|
|
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")
|
2019-11-19 22:07:30 +00:00
|
|
|
// implementation("gradle.plugin.org.spongepowered:spongegradle:0.9.0")
|
|
|
|
// implementation("net.minecraftforge.gradle:ForgeGradle:3.0.143")
|
|
|
|
// implementation("net.fabricmc:fabric-loom:$loomVersion")
|
|
|
|
// implementation("net.fabricmc:sponge-mixin:$mixinVersion")
|
2019-11-21 13:50:05 +00:00
|
|
|
// implementation("gradle.plugin.com.mendhak.gradlecrowdin:plugin:0.1.0")
|
2019-07-10 20:13:41 +00:00
|
|
|
}
|