TerraForged/TerraForgedApp/build.gradle

22 lines
444 B
Groovy
Raw Normal View History

2020-02-26 15:02:07 +00:00
apply plugin: "maven-publish"
apply plugin: "java"
2020-01-16 10:06:28 +00:00
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.processing:core:3.3.7"
compile "it.unimi.dsi:fastutil:8.2.1"
2020-01-16 10:06:28 +00:00
compile project(":TerraForgedCore")
}
jar {
manifest { attributes "Main-Class": "com.terraforged.app.Main" }
2020-01-16 21:33:41 +00:00
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
2020-02-26 15:02:07 +00:00
}
publish {
dependsOn(jar)
2020-01-16 10:06:28 +00:00
}