TerraForged/TerraForgedApp/build.gradle

17 lines
379 B
Groovy
Raw Normal View History

2020-01-16 21:51:01 +00:00
apply plugin: "java"
2020-01-16 10:06:28 +00:00
repositories {
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
compile "org.processing:core:3.3.7"
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-01-16 10:06:28 +00:00
}