forked from asya-khachatryan/spacegoat-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (30 loc) · 1.28 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.4'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'com.spacegoat'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.springframework', name: 'spring-web', version: '6.0.13'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '3.1.4'
implementation 'org.springframework.boot:spring-boot-starter-jdbc:3.1.4'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.6.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.1.4'
runtimeOnly 'org.postgresql:postgresql'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation group: 'org.mapstruct', name: 'mapstruct', version: '1.5.5.Final'
implementation group: 'org.mapstruct', name: 'mapstruct-processor', version: '1.5.5.Final'
// https://mvnrepository.com/artifact/org.projectlombok/lombok-mapstruct-binding
implementation group: 'org.projectlombok', name: 'lombok-mapstruct-binding', version: '0.2.0'
}
tasks.named('test') {
useJUnitPlatform()
}