forked from ome/omero-insight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
68 lines (59 loc) · 2.35 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
plugins {
id "java"
id "org.openmicroscopy.insight"
id "org.openmicroscopy.publish"
id "org.openmicroscopy.distribute"
id "org.openmicroscopy.packager"
id "org.openmicroscopy.additional-repositories" version "5.5.1"
}
group = "org.openmicroscopy"
version = "5.5.4-SNAPSHOT"
repositories {
mavenLocal()
jcenter()
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
testImplementation("junit:junit:4.12")
if (JavaVersion.current().isJava9Compatible()) {
implementation('com.sun.activation:javax.activation:1.2.0')
}
implementation("com.mortennobel:java-image-scaling:0.8.6")
implementation("com.google.code.gson:gson:2.8.5")
implementation("com.zeroc:glacier2:3.6.4")
implementation("info.clearthought:table-layout:4.3.0")
implementation("insight:JHotDraw:7.0.9")
implementation("net.imagej:ij:1.48s")
implementation("net.java.dev.jna:jna-platform:5.3.0")
implementation("org.apache.poi:poi:4.0.1")
implementation("org.apache.commons:commons-collections4:4.3")
implementation("org.apache.httpcomponents:httpmime:4.5.7")
implementation("org.apache.httpcomponents:httpclient:4.5.7")
implementation("org.apache.httpcomponents:httpcomponents-client:4.5.7")
implementation("org.jfree:jfreechart:1.0.19")
implementation("org.swinglabs:swingx:1.6.1")
implementation("net.sf.ehcache:ehcache-core:2.6.11")
implementation("org.openmicroscopy:omero-gateway:5.5.3") {
// Conflicts with `net.java.dev.jna`
exclude group: "com.sun.jna", module: "jna"
}
}
test {
testLogging.showStandardStreams = true
systemProperties = System.getProperties()
systemProperties["omero.user"] = "user"
systemProperties["omero.pass"] = "changeMe"
systemProperties["omero.host"] = "localhost"
systemProperties["omero.port"] = "4064"
systemProperties["omero.portSSL"] = "4063"
filter {
// Exclude the tests related to 239dc7fe9b000e6ceb0457b30a87569ec0619cfc
// When we revert the above commit, the exclusion should be removed
excludeTestsMatching "TestExecCommandStateTrans.testCancelWhenCancelled"
excludeTestsMatching "TestExecCommandStateTrans.testRunWhenCancelled"
excludeTestsMatching "TestExecCommandStateTrans.testExecutingCancelled"
}
}