-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
62 lines (50 loc) · 2.12 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
59
60
61
62
plugins {
id 'org.springframework.boot' version '2.7.10'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
id 'groovy'
}
group = 'no.fintlabs'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
jar {
enabled = false
}
repositories {
mavenCentral()
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 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'io.netty:netty-resolver-dns-native-macos:4.1.72.Final:osx-aarch_64'
implementation 'no.fint:fint-personvern-resource-model-java:3.10.0'
implementation 'no.fint:fint-administrasjon-resource-model-java:3.10.0'
implementation 'no.fint:fint-utdanning-resource-model-java:3.10.0-rc-1'
implementation 'no.fintlabs:fint-resource-server-security:1.1.0'
implementation 'io.projectreactor:reactor-core'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
implementation 'io.projectreactor.addons:reactor-extra:3.4.8'
testImplementation 'no.fint:fint-test-utils:0.0.6'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'cglib:cglib-nodep:3.3.0'
testImplementation 'org.spockframework:spock-spring:2.0-groovy-3.0'
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
implementation 'no.fint:fint-felles-resource-model-java:3.10.0'
implementation 'no.fint:fint-administrasjon-resource-model-java:3.10.0'
implementation 'no.fint:fint-model-resource:0.4.1'
}
test {
useJUnitPlatform()
}