-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (33 loc) · 1.08 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
plugins {
id 'spring-boot-starter-conventions'
id 'checkstyle'
}
dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation(project(':laa-ccms-java-gradle-plugin')) {
transitive = false
}
implementation 'io.swagger.core.v3:swagger-models:2.2.28'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'jakarta.servlet:jakarta.servlet-api'
implementation 'jakarta.ws.rs:jakarta.ws.rs-api'
implementation 'com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
testImplementation 'org.assertj:assertj-core:3.27.3'
}
checkstyle {
maxWarnings = 0
toolVersion = checkstyleVersion
sourceSets = sourceSets.main as SourceSetContainer
showViolations = true
}
publishing.publications {
library(MavenPublication) {
from components.java
}
}
test {
useJUnitPlatform()
}