-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
54 lines (40 loc) · 1.36 KB
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.8.20"
id("org.springframework.boot") version "3.2.1"
kotlin("plugin.spring") version "2.0.0-Beta2"
war
}
group = "org.pathcheck"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
// forces jackson version of 2.14
implementation("com.fasterxml.jackson:jackson-bom:2.16.1")
// plan definiton evaluate
implementation("org.opencds.cqf.fhir:cqf-fhir-cr:3.0.0-PRE14")
implementation("org.opencds.cqf.fhir:cqf-fhir-jackson:3.0.0-PRE14")
// fhir data objects
implementation("ca.uhn.hapi.fhir:org.hl7.fhir.r4:6.1.2.2")
implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:6.10.0")
// html templates
implementation("org.springframework.boot:spring-boot-starter-thymeleaf:3.0.4")
implementation("org.springframework.boot:spring-boot-starter-web:3.1.0")
// hot loading
developmentOnly("org.springframework.boot:spring-boot-devtools:3.0.4")
testImplementation("org.jetbrains.kotlin:kotlin-test:1.8.10")
testImplementation("org.skyscreamer:jsonassert:1.5.1")
testImplementation("org.springframework.boot:spring-boot-starter-test:3.1.0")
testImplementation("io.mockk:mockk:1.13.8")
}
tasks.create("stage") {
dependsOn("build")
}
tasks.test {
useJUnitPlatform()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = JavaVersion.VERSION_17.toString()
}