mirror of
https://github.com/YatopiaMC/Yatopia.git
synced 2024-11-29 14:15:43 +01:00
985b5655f5
This has been in work for a bunch of time. Zoe ( duplexsystem or budgidiere, whatever ) has put a ton of work into this. We now have a bugfree build system that works flawlessly. Co-authored-by: Ivan Pekov <ivan@mrivanplays.com> Co-authored-by: Simon Gardling <titaniumtown@gmail.com> Co-authored-by: toinouH <toinouh2003@gmail.com> P.s the one who merged this is ivan and not bud.
31 lines
713 B
Plaintext
31 lines
713 B
Plaintext
val kotlinxDomVersion = "0.0.10"
|
|
val shadowVersion = "6.1.0"
|
|
val mustacheVersion = "0.9.6"
|
|
val javaxMailVersion = "1.4.4"
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlinx:kotlinx.dom:$kotlinxDomVersion")
|
|
implementation("com.github.jengelman.gradle.plugins:shadow:$shadowVersion")
|
|
implementation("com.github.spullara.mustache.java:compiler:$mustacheVersion")
|
|
implementation("javax.mail:mail:$javaxMailVersion")
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("Toothpick") {
|
|
id = "toothpick"
|
|
implementationClass = "Toothpick"
|
|
}
|
|
}
|
|
}
|