mirror of
https://github.com/paulscherrerinstitute/ch.psi.imagej.hdf5.git
synced 2025-04-23 22:40:05 +02:00
31 lines
1014 B
Groovy
31 lines
1014 B
Groovy
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. */
|
|
}
|
|
}
|