-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.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 '5.0.0'
}
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 = '11'
targetCompatibility = '11'
}
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.5"
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.2'
//Synthea
implementation group: 'org.mitre.synthea', name: 'synthea', version: '3.0.0'
//Jackson
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.12.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.13.2'
//HAPI FHIR
implementation 'ca.uhn.hapi.fhir:org.hl7.fhir.core:5.6.42'
implementation 'ca.uhn.hapi.fhir:org.hl7.fhir.utilities:5.6.42'
implementation 'ca.uhn.hapi.fhir:org.hl7.fhir.r4:5.6.42'
implementation group: 'ca.uhn.hapi.fhir', name: 'hapi-fhir-base', version: '5.7.2'
}
shadowJar {
archiveBaseName.set('syntheakds')
zip64 true
exclude 'App.class'
}
test {
useJUnitPlatform()
}