added gradle build file

This commit is contained in:
2015-04-14 08:30:17 +02:00
parent e9d73ffde8
commit be80fb446a
6 changed files with 292 additions and 0 deletions

30
build.gradle Normal file
View File

@ -0,0 +1,30 @@
apply plugin: 'java'
apply plugin: 'maven'
group = 'ch.psi'
version = '0.8.0'
description = """"""
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
maven { url "http://slsyoke4.psi.ch:8081/artifactory/libs-releases" }
}
dependencies {
compile group: 'hdf5', name: 'hdf', version:'2.10.0'
compile group: 'hdf5', name: 'hdfobj', version:'2.10.0'
compile group: 'hdf5', name: 'hdf5', version:'2.10.0'
compile group: 'hdf5', name: 'hdf5obj', version:'2.10.0'
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.6'
testCompile group: 'junit', name: 'junit', version:'4.11'
compile(group: 'gov.nih.imagej', name: 'imagej', version:'1.46') {
/* This dependency was originally in the Maven provided scope, but the project was not of type war.
This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency.
Please review and delete this closure when resolved. */
}
}