-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
42 lines (37 loc) · 1.12 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.0'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'dciproject'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
// JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// Thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
// web
implementation 'org.springframework.boot:spring-boot-starter-web'
// lombok
implementation 'org.projectlombok:lombok'
//MySql
runtimeOnly 'mysql:mysql-connector-java:8.0.28'
annotationProcessor 'org.projectlombok:lombok'
//ModelMapper
implementation 'org.modelmapper:modelmapper:2.4.4'
}
tasks.named('test') {
useJUnitPlatform()
}