-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
79 lines (65 loc) · 2.06 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
69
70
71
72
73
74
75
76
77
78
plugins {
id "java"
id "jacoco"
id "eclipse"
id "war"
}
group = 'edu.stanford.hivdb'
version = '3.5.2'
sourceCompatibility = 15
targetCompatibility = 15
repositories {
mavenCentral()
maven {
url 'https://artifactory.cronapp.io/public-release/'
}
}
dependencies {
implementation 'org.apache.logging.log4j:log4j-api:2.14.1'
implementation 'org.apache.logging.log4j:log4j-core:2.14.1'
implementation 'jakarta.ws.rs:jakarta.ws.rs-api:3.0.0'
// following three are required by Tomcat, which is not a full JEE server
implementation 'org.glassfish.jersey.containers:jersey-container-servlet:3.1.3'
implementation 'org.glassfish.jersey.inject:jersey-hk2:3.1.3'
// implementation 'org.glassfish.jersey.ext.cdi:jersey-cdi1x:3.1.3'
implementation 'org.jboss.resteasy:resteasy-jaxrs:3.9.3.Final'
implementation 'org.jboss.resteasy:resteasy-servlet-initializer:3.9.3.Final'
implementation 'org.jboss.resteasy:resteasy-jackson2-provider:3.9.3.Final'
implementation 'org.jboss.resteasy:resteasy-client:3.9.3.Final'
implementation 'com.graphql-java:graphql-java:15.0'
implementation 'org.apache.commons:commons-lang3:3.10'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'org.apache.commons:commons-collections4:4.1'
implementation 'com.google.code.gson:gson:2.9.1'
implementation project(':sierra-core')
implementation project(':sierra-graphql')
implementation project(':hivfacts-java')
testImplementation project(':sierra-tests')
testImplementation 'junit:junit:4.12'
}
subprojects {
apply plugin: 'java'
repositories {
mavenCentral()
maven {
url 'https://artifactory.cronapp.io/public-release/'
}
}
compileJava {
options.compilerArgs += '-proc:none'
}
compileTestJava {
options.compilerArgs += '-proc:none'
}
dependencies {}
}
test {
useJUnitPlatform()
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
check.dependsOn jacocoTestReport