mirror of
https://github.com/paulscherrerinstitute/ch.psi.imagej.hdf5.git
synced 2025-06-22 17:57:59 +02:00
added gradle build file
This commit is contained in:
30
build.gradle
Normal file
30
build.gradle
Normal 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. */
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user