forked from skfit-uni-luebeck/Synthea-MII-KDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (48 loc) · 1.64 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
plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
apply plugin: 'checkstyle'
apply plugin: 'jacoco'
apply plugin: 'maven-publish'
apply plugin: 'signing'
group 'org.example'
//version '1.0'
compileJava {
sourceCompatibility = '21'
targetCompatibility = '21'
}
mainClassName = 'org.example.syntheakds.Main'
repositories {
mavenCentral()
}
dependencies {
//implementation 'org.codehaus.groovy:groovy-all:3.0.5'
implementation 'org.codehaus.groovy:groovy-all:3.0.22'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
//log4j2
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.0'
//Synthea
implementation group: 'org.mitre.synthea', name: 'synthea', version: '3.2.0'
//Jackson
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.17.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.17.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.17.2'
//HAPI FHIR
implementation 'ca.uhn.hapi.fhir:org.hl7.fhir.core:6.3.18'
implementation 'ca.uhn.hapi.fhir:org.hl7.fhir.utilities:6.3.18'
implementation 'ca.uhn.hapi.fhir:org.hl7.fhir.r4:6.3.18'
implementation group: 'ca.uhn.hapi.fhir', name: 'hapi-fhir-base', version: '7.2.2'
}
shadowJar {
archiveBaseName.set('syntheakds')
zip64 true
exclude 'App.class'
}
test {
useJUnitPlatform()
}