testcraftupdate/build.gradle

40 lines
895 B
Groovy
Raw Permalink Normal View History

2021-05-27 21:48:38 +02:00
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "5.2.0"
}
group 'ley.modding'
2023-08-02 19:18:59 +02:00
version '1.1.0'
2021-05-27 21:48:38 +02:00
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://libraries.minecraft.net"
name "minecraft"
}
2021-06-01 15:33:08 +02:00
maven {
2023-08-02 19:18:59 +02:00
url "https://maven.tilera.xyz/"
2021-06-01 15:33:08 +02:00
}
2021-05-27 21:48:38 +02:00
}
dependencies {
2021-06-01 15:33:08 +02:00
implementation "ley.anvil:addonscript:1.0-SNAPSHOT"
2021-05-27 21:48:38 +02:00
implementation group: 'net.lingala.zip4j', name: 'zip4j', version: '2.8.0'
compileOnly group: 'com.google.code.gson', name: 'gson', version: '2.8.7'
compileOnly group: "net.minecraft", name: "launchwrapper", version: "1.12"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
manifest {
attributes([
"TweakClass": "ley.modding.tcu.UpdateTweaker",
"TweakOrder": -100000,
])
}
}
build.dependsOn shadowJar