Yatopia/mappings/mapper/build.gradle

28 lines
480 B
Groovy
Raw Normal View History

2021-05-01 02:05:41 +02:00
plugins {
id 'java'
id 'application'
}
repositories {
maven {
name = "Fabric"
url = 'https://maven.fabricmc.net/'
}
jcenter()
}
dependencies {
// This dependency is used by the application.
2021-05-08 02:45:34 +02:00
implementation 'com.google.guava:guava:30.1.1-jre'
2021-05-01 02:05:41 +02:00
// srg management
2021-05-08 02:45:34 +02:00
implementation 'org.cadixdev:lorenz:0.5.7'
2021-05-01 02:05:41 +02:00
// source code remapping
2021-05-08 02:49:58 +02:00
implementation 'org.cadixdev:mercury:0.1.0.fabric-SNAPSHOT'
2021-05-01 02:05:41 +02:00
}
application {
mainClassName = 'mapper.Main'
}