-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (42 loc) · 1.09 KB
/
build.gradle
File metadata and controls
49 lines (42 loc) · 1.09 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
plugins {
id "java-library"
id "org.openmicroscopy.project" version "6.0.0"
}
group = "org.openmicroscopy"
version = "5.6.5-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
mavenCentral()
maven {
url 'https://artifacts.glencoesoftware.com/artifactory/ome.releases/'
}
maven {
url 'https://artifacts.unidata.ucar.edu/repository/unidata-releases/'
}
maven {
url 'https://maven.scijava.org/repository/thirdparty/'
}
maven {
url 'https://artifacts.openmicroscopy.org/artifactory/ome.external/'
}
}
compileJava {
options.release = 8
}
dependencies {
testImplementation("org.testng:testng:7.5")
api("org.openmicroscopy:omero-romio:5.8.5")
// Keep these from being exposed to child projects
implementation("org.apache.commons:commons-lang3:3.18.0")
}
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
// enable TestNG support (default is JUnit)
useTestNG() {
suites "src/test/resources/unit.testng.xml"
}
dependsOn cleanTest
}