-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
65 lines (50 loc) · 1.82 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
plugins {
id 'org.springframework.boot' version '3.1.1'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
id 'groovy'
}
group = 'com.newcubator'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
ext {
set('testcontainersVersion', "1.17.4")
}
dependencies {
implementation(platform("org.springframework.experimental:spring-modulith-bom:0.6.0"))
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-docker-compose'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.springframework.experimental:spring-modulith-api'
testImplementation 'org.springframework.experimental:spring-modulith-starter-test'
implementation 'org.postgresql:postgresql'
implementation 'org.hibernate:hibernate-spatial:6.1.2.Final'
implementation 'org.geolatte:geolatte-geom:1.9.0'
implementation 'org.geolatte:geolatte-geojson:1.9.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.spockframework:spock-core:2.4-M1-groovy-4.0'
testImplementation 'org.spockframework:spock-spring:2.4-M1-groovy-4.0'
testImplementation 'org.apache.groovy:groovy-json:4.0.10'
testImplementation "org.testcontainers:spock:1.17.6"
testImplementation "org.testcontainers:postgresql:1.17.6"
testImplementation 'io.github.nifty10m:yangyin:1.2.1'
}
dependencyManagement {
imports {
mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}"
}
}
tasks.named('test') {
useJUnitPlatform()
}