fyrecc/Engine/build.gradle

32 lines
421 B
Groovy

allprojects {
group = 'cc.fyre.engine'
version = '1.0-SNAPSHOT'
}
subprojects {
repositories {
flatDir {
dirs 'libs'
}
mavenLocal()
mavenCentral()
}
afterEvaluate {
dependencies {
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}