-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (39 loc) · 1.41 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
plugins {
id 'org.springframework.boot' version '2.7.2'
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
id 'com.google.cloud.tools.jib' version '3.2.1'
id 'java'
id 'groovy'
}
group = 'net.beardy.finance'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
annotationProcessor "org.hibernate:hibernate-jpamodelgen"
annotationProcessor "org.projectlombok:lombok"
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.liquibase:liquibase-core"
implementation "org.modelmapper:modelmapper:3.1.0"
implementation "net.croz.nrich:nrich-registry-spring-boot-starter:1.4.1"
implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
compileOnly "org.projectlombok:lombok"
runtimeOnly "org.postgresql:postgresql:42.3.6"
runtimeOnly "com.h2database:h2"
developmentOnly "org.springframework.boot:spring-boot-devtools"
testImplementation "org.spockframework:spock-core:2.1-groovy-3.0"
testImplementation "org.spockframework:spock-spring:2.1-groovy-3.0"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}
tasks.named('test') {
useJUnitPlatform()
}