-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (34 loc) · 1.6 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
plugins {
id 'org.springframework.boot' version '2.5.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'su.medsoft'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '16'
repositories {
mavenCentral()
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'lib')
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-web-services'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.kafka:spring-kafka'
implementation group: 'org.springframework.retry', name: 'spring-retry', version: '1.3.1'
implementation group: 'org.springframework', name: 'spring-aspects', version: '5.3.9'
implementation group: 'org.apache.santuario', name: 'xmlsec', version: '2.2.1'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.1'
implementation group: 'wsdl4j', name: 'wsdl4j', version: '1.6.3'
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.5.9'
implementation group: 'org.apache.curator', name: 'curator-framework', version: '5.1.0'
implementation group: 'org.apache.curator', name: 'curator-x-discovery', version: '5.1.0'
runtimeOnly 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}