forked from HL7-DaVinci/prior-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
83 lines (73 loc) · 2.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
buildscript {
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/snapshot' }
maven { url 'http://repo.jenkins-ci.org/releases/' }
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.4.1'
}
}
plugins {
id 'java'
id 'application'
id 'eclipse'
id 'jacoco'
}
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
repositories {
mavenLocal()
maven {
url = uri('https://oss.sonatype.org/content/repositories/snapshots/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.webjars:webjars-locator-core'
implementation 'org.webjars:sockjs-client:1.1.2'
implementation 'org.webjars:stomp-websocket:2.3.3-1'
implementation 'org.webjars:bootstrap:5.1.3'
implementation 'org.webjars:jquery:3.1.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation files('lib/RuleUtils.jar')
implementation('org.opencds.cqf:cql-engine:1.3.12.1') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
}
implementation (group: 'org.opencds.cqf', name: 'cql-engine-fhir', version: '1.3.12.1') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
}
implementation 'info.cqframework:cql-to-elm:1.5.5'
implementation 'com.google.guava:guava:31.0.1-jre'
implementation 'ca.uhn.hapi.fhir:hapi-fhir-base:5.6.1'
implementation 'ca.uhn.hapi.fhir:hapi-fhir-structures-dstu3:5.6.1'
implementation 'ca.uhn.hapi.fhir:hapi-fhir-structures-r4:5.6.1'
implementation 'com.h2database:h2:1.4.200'
implementation 'com.auth0:java-jwt:3.18.2'
implementation 'com.auth0:jwks-rsa:0.20.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-webflux'
testImplementation 'org.projectreactor:reactor-spring:1.0.1.RELEASE'
testImplementation 'junit:junit:4.13.2'
testImplementation 'com.squareup.okhttp3:okhttp:4.9.3'
testImplementation 'ca.uhn.hapi.fhir:hapi-fhir-validation:5.5.3'
testImplementation 'ca.uhn.hapi.fhir:hapi-fhir-validation-resources-dstu3:5.6.1'
testImplementation 'ca.uhn.hapi.fhir:hapi-fhir-validation-resources-dstu2:5.6.1'
testImplementation 'ca.uhn.hapi.fhir:hapi-fhir-validation-resources-r4:5.6.1'
testImplementation 'com.helger:ph-schematron:5.6.5'
testImplementation 'com.phloc:phloc-schematron:2.7.1'
testImplementation 'com.phloc:phloc-commons:4.6.7'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}
check.dependsOn jacocoTestReport
// Define the main class for the application
mainClassName = 'org.hl7.davinci.priorauth.App'