-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathbuild.gradle
More file actions
129 lines (114 loc) · 3.94 KB
/
build.gradle
File metadata and controls
129 lines (114 loc) · 3.94 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
plugins {
id 'application'
id 'eclipse'
id 'maven-publish'
id 'checkstyle'
}
group = 'com.glencoesoftware'
version = '0.10.0-SNAPSHOT'
application {
mainClass = 'com.glencoesoftware.pyramid.PyramidFromDirectoryWriter'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
repositories {
mavenCentral()
maven {
url 'https://artifacts.glencoesoftware.com/artifactory/ome.releases/'
}
maven {
url 'https://artifacts.glencoesoftware.com/artifactory/unidata-releases/'
}
maven {
url 'https://repo.glencoesoftware.com/repository/bioformats2raw2ometiff/'
}
maven {
url 'https://maven.scijava.org/content/groups/public'
}
}
dependencies {
implementation 'net.java.dev.jna:jna:5.10.0'
implementation 'dev.zarr:zarr-java:0.1.0'
implementation 'info.picocli:picocli:4.7.5'
implementation 'me.tongfei:progressbar:0.9.0'
implementation 'ome:formats-bsd:8.5.0'
implementation 'com.glencoesoftware:bioformats2raw:0.12.0-rc2'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.16'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.3.16'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.7.0' // 1.7.0 matches 5.7.0, not a typo
// https://stackoverflow.com/questions/45462987/junit5-with-intellij-and-gradle
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'
}
test {
useJUnitPlatform()
}
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": "raw2ometiff converter",
"Implementation-Version": archiveVersion,
"Implementation-Vendor": "Glencoe Software Inc.",
"Main-Class": application.mainClass
)
}
}
distributions {
main {
contents {
from("$projectDir") {
include 'README.md'
include 'LICENSE.txt'
}
}
}
}
startScripts {
// placing logback.xml somewhere under src/dist/lib/ keeps it out of
// raw2ometiff-*.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\\\\*')
}
}
publishing {
publications {
raw2ometiff(MavenPublication) {
from components.java
pom {
licenses {
license {
name = 'GNU General Public License version 2'
url = 'http://www.gnu.org/licenses/gpl-2.0.txt'
}
}
}
}
}
repositories {
maven {
url 'https://repo.glencoesoftware.com/repository/bioformats2raw2ometiff/'
credentials {
username = project.properties.ArtifactoryUserName
password = project.properties.ArtifactoryPassword
}
}
}
}
checkstyle {
toolVersion = "8.26"
}