4
0
Fork 0
mirror of https://github.com/Anvilcraft/modpacktools synced 2024-09-30 13:09:20 +02:00
modpacktools/build.gradle

33 lines
741 B
Groovy
Raw Normal View History

2020-04-30 20:48:45 +02:00
plugins {
id 'java'
id 'application'
2020-04-30 20:48:45 +02:00
}
group 'ley.anvil'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
2020-04-30 20:50:48 +02:00
maven { url 'https://jitpack.io' }
2020-04-30 20:48:45 +02:00
}
dependencies {
2020-04-30 20:50:48 +02:00
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
compile "com.github.TheRandomLabs:CurseAPI:master-SNAPSHOT"
2020-04-30 20:48:45 +02:00
testCompile group: 'junit', name: 'junit', version: '4.12'
}
mainClassName = 'ley.anvil.modpacktools.Main'
//create a single Jar with all dependencies
task fatJar(type: Jar) {
clean
manifest {
attributes 'Main-Class': mainClassName
}
archiveBaseName = 'MCServerInfo'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}