-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
46 lines (39 loc) · 1015 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
43
44
45
46
buildscript {
repositories {
mavenCentral()
}
ext {
springBootVersion = '2.1.9.RELEASE'
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
id 'org.shipkit.java' version '2.0.31'
id 'io.franzbecker.gradle-lombok' version '1.14'
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
configurations.all {
resolutionStrategy {
cacheDynamicVersionsFor 0, 'seconds'
}
}
lombok {
version = '1.18.4'
sha256 = ""
}
group = 'uk.gov.dhsc.htbhf'
sourceCompatibility = 1.11
targetCompatibility = 1.11
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation "commons-io:commons-io:2.6"
implementation "io.micrometer:micrometer-registry-prometheus:1.1.4"
}