forked from glencoesoftware/bioformats2raw
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (34 loc) · 803 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'application'
id 'eclipse'
id 'java'
id 'checkstyle'
}
group = 'com.glencoesoftware'
version = '0.2.0-SNAPSHOT'
mainClassName = 'com.glencoesoftware.bioformats2raw.Converter'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
maven {
url 'https://artifacts.openmicroscopy.org/artifactory/repo/'
}
maven {
url 'https://saalfeldlab.github.io/maven'
}
}
dependencies {
compile ('ome:formats-gpl:6.4.0')
compile ('info.picocli:picocli:3.9.6')
compile ('org.janelia.saalfeldlab:n5:2.1.6')
compile ('org.janelia.saalfeldlab:n5-blosc:1.0.1')
}
applicationDistribution.from("$projectDir") {
include 'LICENSE.txt'
include 'bin/*'
}
checkstyle {
toolVersion = "8.26"
}