-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
68 lines (61 loc) · 1.92 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
plugins {
id 'java-library'
id "org.openmicroscopy.project" version "5.5.4"
}
group = "org.openmicroscopy"
version = "5.9.4-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
api("org.openmicroscopy:omero-blitz:5.7.4")
implementation("commons-beanutils:commons-beanutils:1.9.3")
implementation("com.zeroc:icegrid:3.6.5")
testImplementation("org.testng:testng:7.5")
}
configurations.all {
// resolutionStrategy.cacheChangingModulesFor 0, 'minutes'
exclude group: 'antlr'
exclude group: 'asm'
exclude group: 'backport-util-concurrent'
exclude group: 'batik'
exclude group: 'cglib'
exclude group: 'com.codahale.metrics'
exclude group: 'com.jamonapi'
exclude group: 'com.github.marcus-nl.btm'
exclude group: 'com.mortennobel'
exclude group: 'com.sun.mail'
exclude group: 'commons-codec'
exclude group: 'commons-pool'
exclude group: 'dom4j'
exclude group: 'freemarker'
exclude group: 'geronimo-spec'
exclude group: 'gnu.getopt'
exclude group: 'org.javassist'
exclude group: 'javax.jts'
exclude group: 'net.sf.ehcache'
exclude group: 'org.apache.lucene'
exclude group: 'org.apache.httpcomponents'
exclude group: 'org.codehaus.btm'
exclude group: 'org.hibernate'
exclude group: 'org.hibernate.javax.persistence'
exclude group: "org.postgresql"
exclude group: "org.springframework"
exclude group: "org.springframework.security"
exclude group: 'org.subethamail'
exclude group: 'org.apache.pdfbox'
exclude group: 'org.quartz-scheduler'
exclude group: 'org.apache.xmlgraphics'
exclude group: 'com.zeroc', module: 'ice-db'
}
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
// enable TestNG support (default is JUnit)
useTestNG() {
suites "src/test/resources/unit.testng.xml"
}
dependsOn cleanTest
}