mirror of
https://github.com/YatopiaMC/Yatopia.git
synced 2024-11-26 04:25:39 +01:00
28 lines
480 B
Groovy
28 lines
480 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "Fabric"
|
|
url = 'https://maven.fabricmc.net/'
|
|
}
|
|
jcenter()
|
|
}
|
|
|
|
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 {
|
|
mainClassName = 'mapper.Main'
|
|
}
|