forked from ome/omero-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (29 loc) · 720 Bytes
/
build.gradle
File metadata and controls
36 lines (29 loc) · 720 Bytes
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
plugins {
id "java-library"
id "org.openmicroscopy.project" version "5.7.2"
}
group = "org.openmicroscopy"
version = "5.6.2-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
}
compileJava {
options.release = 8
}
dependencies {
testImplementation("org.testng:testng:7.5")
api("org.openmicroscopy:omero-romio:5.8.1")
// Keep these from being exposed to child projects
implementation("commons-lang:commons-lang:2.6")
}
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
// enable TestNG support (default is JUnit)
useTestNG() {
suites "src/test/resources/unit.testng.xml"
}
dependsOn cleanTest
}