TerraForged/TerraForgedApp/build.gradle

15 lines
319 B
Groovy
Raw Normal View History

2020-01-16 10:06:28 +00:00
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.processing:core:3.3.7"
compile project(":TerraForgedCore")
}
jar {
manifest { attributes "Main-Class": "com.terraforged.app.Main" }
2020-01-16 22:14:14 +00:00
2020-01-16 21:33:41 +00:00
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
2020-01-16 10:06:28 +00:00
}