15 lines
319 B
Groovy
15 lines
319 B
Groovy
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.processing:core:3.3.7"
|
|
compile project(":TerraForgedCore")
|
|
}
|
|
|
|
jar {
|
|
manifest { attributes "Main-Class": "com.terraforged.app.Main" }
|
|
|
|
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
} |