This is an automated email from the git hooks/post-receive script. New commit to branch sync-timebundle in repository jtimer. See https://gitlab.nuiton.org/chorem/jtimer.git commit d55c769952b523671eb10799507ae42179e47ddb Author: Eric Chatellier <chatellier@codelutin.com> Date: Wed Mar 8 17:33:37 2017 +0100 Add gradle build --- build.gradle | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..60a34b4 --- /dev/null +++ b/build.gradle @@ -0,0 +1,38 @@ +apply plugin: 'java' +apply plugin: 'application' + +group = "org.chorem" +version = '1.5.2-SNAPSHOT' +sourceCompatibility = 1.8 + +mainClassName = "org.chorem.jtimer.JTimer" + +repositories { + mavenCentral() +} + +dependencies { + compile('org.nuiton:nuiton-config:3.2') { + exclude module: 'commons-primitives' + exclude module: 'commons-logging' + exclude module: 'nuiton-i18n' + exclude module: 'guava' + } + compile 'org.jdesktop.bsaf:bsaf:1.9.2' + compile 'org.swinglabs.swingx:swingx-core:1.6.5-1' + compile 'net.java.dev.jna:jna:4.3.0' + compile 'org.slf4j:jcl-over-slf4j:1.7.24' + compile 'ch.qos.logback:logback-classic:1.2.1' + compile 'org.freemarker:freemarker:2.3.25-incubating' + compile 'org.yaml:snakeyaml:1.18' + compile 'com.google.code.gson:gson:2.8.0' + compile 'org.json:json:20160810' + compile 'org.apache.commons:commons-lang3:3.5' + compile 'commons-io:commons-io:2.5' + testCompile 'org.testng:testng:6.11' +} + +test { + useTestNG() +} + -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.