-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
55 lines (44 loc) · 1.32 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
plugins {
id 'java'
id 'io.freefair.lombok' version '8.4'
id 'org.springframework.boot' version '3.1.5'
id 'com.gorylenko.gradle-git-properties' version '2.4.1'
id 'org.sonarqube' version '3.5.0.2730'
id 'com.google.cloud.tools.jib' version '3.4.0'
}
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
group = 'net.ripe.rpki'
version = '0.5.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url = uri('https://nexus.ripe.net/nexus/content/repositories/releases/')
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-quartz'
// Metrics
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'com.google.guava:guava:31.1-jre'
implementation "net.ripe.rpki:rpki-commons:1.36"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
bootRun {
systemProperties = System.properties
}
tasks.named('test') {
useJUnitPlatform()
}
// Do not build *-plain.jar
jar {
enabled = false
}