forked from MirrorHub/authlib-injector
36 lines
721 B
Groovy
36 lines
721 B
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow' version '2.0.1'
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://libraries.minecraft.net/' }
|
|
}
|
|
|
|
dependencies {
|
|
compile 'org.ow2.asm:asm:5.2'
|
|
compile 'org.yaml:snakeyaml:1.18'
|
|
compileOnly ('net.minecraft:launchwrapper:1.12') {
|
|
transitive = false
|
|
}
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
jar {
|
|
manifest {
|
|
attributes (
|
|
'Implementation-Title': project.name,
|
|
'Implementation-Version': version,
|
|
'Premain-Class': 'org.to2mbn.authlibinjector.javaagent.AuthlibInjectorPremain',
|
|
'TweakClass': 'org.to2mbn.authlibinjector.tweaker.AuthlibInjectorTweaker'
|
|
)
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
classifier = null
|
|
}
|