-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
58 lines (45 loc) · 1.19 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
buildscript {
ext {
bas = [
version: 'latest.milestone',
]
springBootVersion = '3.1.3'
springFrameworkVersion = '6.0.14'
}
}
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.6'
id "io.freefair.lombok" version "6.4.3"
}
group 'com.softwareag.controlplane.agentaws'
version '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
}
configurations {
all {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
}
dependencies {
implementation fileTree(dir: '../libs', include: '*.jar')
implementation project(':common:modules:assets-handler')
implementation project(':common:modules:metrics-handler')
implementation project(':common:modules:heartbeat-handler')
implementation project(':common:modules:auth')
implementation rootProject.agentSdk
implementation rootProject.springBootApplication
testImplementation rootProject.springBootStarterTest
annotationProcessor rootProject.springBootAnnotationProcessor
}
tasks.named('bootJar') {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
bootRun {
}
test {
useJUnitPlatform()
}