This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
generated from FINTLabs/fint-spring-boot-template-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (48 loc) · 1.66 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
plugins {
id 'org.springframework.boot' version '3.3.3'
id 'io.spring.dependency-management' version '1.1.6'
id 'java'
id 'groovy'
id 'com.github.ben-manes.versions' version '0.51.0'
id 'se.patrikerdes.use-latest-versions' version '0.2.18'
}
group = 'no.fintlabs'
version = '0-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenLocal()
mavenCentral()
repositories {
maven {
url "https://repo.fintlabs.no/releases"
}
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation "no.fint:fint-personvern-resource-model-java:${apiVersion}"
implementation 'no.fintlabs:fint-core-resource-server-security:2.1.0'
implementation 'no.fintlabs:fint-core-consumer-shared:2.5.0'
implementation 'com.google.guava:guava:33.3.0-jre'
implementation 'org.apache.commons:commons-lang3:3.17.0'
implementation 'io.netty:netty-resolver-dns-native-macos:4.2.0.Alpha3:osx-aarch_64'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.spockframework:spock-spring:2.4-M4-groovy-4.0'
testImplementation 'org.spockframework:spock-core:2.4-M4-groovy-4.0'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
jar {
enabled = false
}
test {
useJUnitPlatform()
}