// Establish version and status ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name group = "org.anarres" buildscript { repositories { // mavenLocal() mavenCentral() // maven { url 'http://jcenter.bintray.com' } } apply from: file('gradle/buildscript.gradle'), to: buildscript } allprojects { repositories { // mavenLocal() mavenCentral() // maven { url: 'http://jcenter.bintray.com' } } } apply plugin: 'idea' apply from: file('gradle/convention.gradle') apply from: file('gradle/maven.gradle') apply from: file('gradle/check.gradle') apply from: file('gradle/license.gradle') // apply from: file('gradle/release.gradle') apply plugin: 'application' apply plugin: VelocityPlugin dependencies { compile 'com.google.code.findbugs:jsr305:2.0.2' compile 'gnu.getopt:java-getopt:1.0.13' compile 'org.apache.ant:ant:1.7.0' testCompile 'junit:junit:4.8.1' } velocity { def p = project context { version = p.version } } test { systemProperty 'org.apache.commons.logging.Log', 'org.apache.commons.logging.impl.SimpleLog' systemProperty 'org.apache.commons.logging.simplelog.defaultlog', 'debug' testLogging { if (System.properties['test.single']) { // events "passed", "skipped", "failed" events "started", "passed", "skipped", "failed" showExceptions true exceptionFormat "full" showStandardStreams true } else { events "failed" } debug { events "started", "passed", "skipped", "failed", "standard_out", "standard_error" exceptionFormat "full" } } }