-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
75 lines (61 loc) · 2.25 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
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
}
}
plugins {
id "org.sonarqube" version "4.2.1.3168"
}
group = "${group}"
version = "${version}"
subprojects {
apply {
plugin "java"
plugin "org.springframework.boot"
plugin "io.spring.dependency-management"
plugin 'jacoco-report-aggregation'
}
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
maven { url 'https://repo.danubetech.com/repository/maven-public' }
}
dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation "org.springdoc:springdoc-openapi-starter-common:${openApiVersion}"
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:${openApiVersion}"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.vault:spring-vault-core:3.0.4'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.testcontainers:postgresql'
testImplementation 'org.testcontainers:vault'
testImplementation "com.github.dasniko:testcontainers-keycloak:${keycloakTestContainerVersion}"
testImplementation "com.github.curious-odd-man:rgxgen:${regexGeneratorVersion}"
testImplementation 'org.mockito:mockito-inline'
testImplementation "org.testcontainers:localstack:1.19.1"
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
tasks.named('test') {
useJUnitPlatform()
}
bootJar {
enabled = false
}
}