-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (36 loc) · 971 Bytes
/
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
plugins {
id 'java'
}
allprojects {
repositories {
mavenCentral()
}
ext {
set('apacheHttpClientVersion', '4.5.13')
set('commonsIoVersion', '2.11.0')
set('jsonwebtokenVersion', '0.11.2')
set('micrometerTracingVersion', 'latest.release')
set('nimbusdsVersion', '9.31')
set('openApiVersion', '2.3.0')
set('springBootVersion', '3.1.6')
set('springCloudVersion', '2022.0.4')
set('springDependencyManagementVersion', '1.1.4')
set('wirmockVersion', '3.3.1')
}
}
java {
sourceCompatibility = JavaVersion.VERSION_20
targetCompatibility = JavaVersion.VERSION_20
}
subprojects {
group = 'lv.gennadyyonov.hello'
version = '0.0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
configurations {
implementation {
// Low CVE-200, CVE-2020-15250 fix
exclude group: 'junit', module: 'junit'
}
}
}