-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (38 loc) · 946 Bytes
/
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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenLocal()
google()
jcenter()
maven { url "https://jitpack.io" }
maven {
url = 'https://oss.sonatype.org/content/repositories/snapshots/'
}
maven {
url = 'http://repo.maven.apache.org/maven2'
}
}
dependencies {
compile 'ca.uhn.hapi.fhir:hapi-fhir-base:4.2.0'
compile 'ca.uhn.hapi.fhir:hapi-fhir-structures-r4:4.2.0'
compile 'ca.uhn.hapi.fhir:hapi-fhir-client:4.2.0'
compile 'ch.qos.logback:logback-classic:1.2.3'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:3.11.2'
}
group = 'io.hapifhir.playground'
version = '1.0'
description = 'HAPI FHIR Playground'
sourceCompatibility = '1.8'
//publishing {
// publications {
// maven(MavenPublication) {
// from(components.java)
// }
// }
//}