generated from FINTLabs/fint-spring-boot-template-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
75 lines (61 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
plugins {
id 'org.springframework.boot' version '3.2.4'
id 'io.spring.dependency-management' version '1.1.4'
id 'java'
}
group = 'no.fintlabs'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '21'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
jar {
enabled = false
}
repositories {
mavenCentral()
repositories {
maven {
url "https://repo.fintlabs.no/releases"
}
}
mavenLocal()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'io.netty:netty-resolver-dns-native-macos:4.1.82.Final:osx-aarch_64'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.flywaydb:flyway-core'
runtimeOnly 'org.postgresql:postgresql'
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 'io.projectreactor:reactor-test'
testImplementation 'cglib:cglib-nodep:3.3.0'
testImplementation 'com.h2database:h2'
implementation platform('org.testcontainers:testcontainers-bom:1.20.1')
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.testcontainers:postgresql'
testImplementation 'org.testcontainers:junit-jupiter'
implementation 'org.springframework.kafka:spring-kafka'
implementation 'no.fintlabs:fint-kafka:3.0.0-rc-1'
implementation 'no.fintlabs:fint-flyt-cache:1.0.0'
implementation 'org.ehcache:ehcache:3.10.6'
implementation 'net.sf.ehcache:ehcache:2.10.9.2'
implementation 'no.fintlabs:fint-resource-server-security:1.1.0'
implementation 'org.modelmapper:modelmapper:2.4.5'
implementation 'no.fintlabs:fint-kontroll-auth:1.2.4'
implementation 'jakarta.servlet:jakarta.servlet-api'
}
test {
useJUnitPlatform()
}