diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle index c69b70a..2bd4eb0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,19 +1,29 @@ -// 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 { apply from: file('gradle/buildscript.gradle'), to: buildscript } -apply from: file('gradle/convention.gradle') -apply from: file('gradle/github.gradle') -apply from: file('gradle/nexus.gradle') -apply from: file('gradle/check.gradle') -apply from: file('gradle/license.gradle') +apply plugin: 'org.anarres.stdproject' +stdproject { +} + + group = "org.anarres" + + apply plugin: 'org.anarres.stdmodule' + stdmodule { + description "An embeddable C Preprocessor for the JVM." + author id: 'shevek', name: 'Shevek', email: '[email protected]' + license 'Apache-2.0' + } + + sourceCompatibility = 1.5 + animalsniffer { + signature = "org.codehaus.mojo.signature:java15:+@signature" + } dependencies { - // compile 'gnu.getopt:java-getopt:1.0.13' + compile 'com.google.code.findbugs:jsr305:2.0.2' + compile 'org.slf4j:slf4j-api:1.7.12' + compile 'net.sf.jopt-simple:jopt-simple:4.7' compile 'org.apache.ant:ant:1.7.0' compile 'com.github.zafarkhaja:java-semver:0.8.0' |