forked from google/fhir-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 724 Bytes
/
build.gradle
File metadata and controls
40 lines (33 loc) · 724 Bytes
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
plugins {
id 'java'
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
google()
}
ext {
javaMainClass = "com.google.fhirexamples.ParsePatients"
}
sourceSets {
main {
java {
srcDirs 'java/com/google/fhirexamples'
exclude {
// Only include ParsePatients.java
FileTreeElement details ->
!details.file.name.endsWith('ParsePatients.java')
}
}
}
}
application {
mainClassName = javaMainClass
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation 'com.google.fhir:r4:0.6.1'
}