mirror of
https://github.com/YatopiaMC/Yatopia.git
synced 2025-02-28 10:12:22 +01:00
* [dev/mapping-tool] Gradle 7.0.2 and updated dependencies + ported mapper build.gradle to build.gradle.kts * fix link * Fixed all deprecations * done , ready to merge
28 lines
496 B
Plaintext
28 lines
496 B
Plaintext
plugins {
|
|
id("java")
|
|
id("application")
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "Fabric"
|
|
url = uri("https://maven.fabricmc.net/")
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// This dependency is used by the application.
|
|
implementation("com.google.guava:guava:30.1.1-jre")
|
|
|
|
// srg management
|
|
implementation("org.cadixdev:lorenz:0.5.7")
|
|
|
|
// source code remapping
|
|
implementation("org.cadixdev:mercury:0.1.0.fabric-SNAPSHOT")
|
|
}
|
|
|
|
application {
|
|
mainClass.set("mapper.Main")
|
|
}
|