-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
66 lines (53 loc) · 2.17 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
plugins {
id 'org.springframework.boot' version '3.4.4'
id 'io.spring.dependency-management' version '1.1.7'
id 'project-report' // for generating HTML formatted dependency reports
id 'scala'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.scala-lang:scala3-library_3:3.6.4'
implementation 'org.typelevel:cats-effect_3:3.6.1'
implementation("org.springframework.boot:spring-boot-starter-webflux") {
exclude group: 'com.fasterxml.jackson.core'
exclude group: 'com.fasterxml.jackson.datatype'
exclude group: 'com.fasterxml.jackson.module'
}
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.security:spring-security-test'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'net.postgis:postgis-jdbc:2024.1.0'
implementation 'io.circe:circe-core_3:0.14.12'
implementation 'io.circe:circe-generic_3:0.14.12'
implementation 'io.circe:circe-parser_3:0.14.12'
implementation 'org.tpolecat:doobie-core_3:1.0.0-RC9'
implementation 'org.tpolecat:doobie-postgres_3:1.0.0-RC9'
implementation('org.flywaydb:flyway-core:11.4.0') {
// TODO: restore this. see: https://github.com/flyway/flyway/issues/4046
// exclude group: 'com.fasterxml.jackson.datatype'
// exclude group: 'com.fasterxml.jackson.dataformat'
}
implementation('org.flywaydb:flyway-database-postgresql:11.4.0') {
// TODO: restore this. see: https://github.com/flyway/flyway/issues/4046
// exclude group: 'com.fasterxml.jackson.datatype'
// exclude group: 'com.fasterxml.jackson.dataformat'
}
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation('com.github.javafaker:javafaker:1.0.2') {
exclude group: 'org.yaml'
}
}
test {
useJUnitPlatform()
}