-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
108 lines (92 loc) · 3.34 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
plugins {
id 'application'
}
group = 'com.glencoesoftware'
version = '0.0.1-SNAPSHOT'
mainClassName = 'com.glencoesoftware.zarr.Convert'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://artifacts.glencoesoftware.com/artifactory/ome.releases'
}
maven {
url 'https://artifacts.glencoesoftware.com/artifactory/ome.external'
}
maven {
url 'https://artifacts.glencoesoftware.com/artifactory/scijava-thirdparty'
}
maven {
url 'https://artifacts.glencoesoftware.com/artifactory/jzarr-releases'
}
maven {
url 'https://repo.glencoesoftware.com/repository/bioformats2raw2ometiff/'
}
maven {
name 'Unidata'
url 'https://artifacts.glencoesoftware.com/artifactory/unidata-releases'
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'minutes'
exclude group: 'edu.ucar', 'module': 'cdm'
}
dependencies {
implementation 'net.java.dev.jna:jna:5.10.0'
implementation 'ome:formats-gpl:7.3.1'
implementation 'info.picocli:picocli:4.7.5'
implementation 'com.univocity:univocity-parsers:2.8.4'
implementation 'dev.zarr:jzarr:0.4.2'
implementation 'dev.zarr:zarr-java:0.0.2'
implementation 'org.lasersonlab:s3fs:2.2.3'
implementation 'javax.xml.bind:jaxb-api:2.3.0'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.14'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.3.14'
testImplementation 'junit:junit:4.12'
testImplementation 'org.apache.commons:commons-lang3:3.12.0'
testImplementation 'com.glencoesoftware:bioformats2raw:0.9.3'
}
test {
useJUnit()
maxHeapSize = "2g"
}
jar {
manifest {
attributes(
"Created-By": "Gradle ${gradle.gradleVersion}",
"Build-Jdk": "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
"Built-By": System.properties['user.name'],
"Built-On": new java.text.SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").format(new Date()),
"Implementation-Build": "git rev-parse --verify HEAD".execute().getText().trim(),
"Implementation-Title": "zarr2zarr",
"Implementation-Version": archiveVersion,
"Implementation-Vendor": "Glencoe Software Inc.",
"Main-Class": mainClassName
)
}
}
distributions {
main {
contents {
from("$projectDir") {
include 'README.md'
include 'LICENSE.txt'
}
}
}
}
startScripts {
// placing logback.xml somewhere under src/dist/lib/ keeps it out of
// bioformats2raw-*.jar but automatically includes it in the distribution zip
// the directory containing logback.xml must be explicitly added to the
// startup scripts' classpath, otherwise it will not be detected
// a subdirectory of 'src/dist/lib/' (not just 'src/dist/') is necessary,
// likely due to https://issues.gradle.org/browse/GRADLE-2991
// see also discussion in https://github.com/glencoesoftware/bioformats2raw/pull/169
classpath += files('src/dist/lib/config/')
doLast {
windowsScript.text = windowsScript.text.replaceAll('set CLASSPATH=.*', 'set CLASSPATH=.;%APP_HOME%\\\\lib\\\\*')
}
}