TerraForged/TerraForgedApp/build.gradle

15 lines
319 B
Groovy
Raw Normal View History

2020-01-16 11:06:28 +01: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 23:14:14 +01:00
2020-01-16 22:33:41 +01:00
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
2020-01-16 11:06:28 +01:00
}