-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
54 lines (46 loc) · 1.92 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
plugins {
id 'org.springframework.boot' version '2.5.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group 'gg.deathnote'
version = '0.0.2-SNAPSHOT'
sourceCompatibility = 11
targetCompatibility = 11
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation('org.springframework.boot:spring-boot-starter-validation')
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.4.1'
implementation 'com.google.code.gson:gson'
implementation('io.springfox:springfox-boot-starter:3.0.0')
implementation 'org.apache.httpcomponents:httpclient'
implementation 'com.opencsv:opencsv:4.5'
implementation group: 'org.modelmapper', name: 'modelmapper', version: '2.3.8'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.ehcache:ehcache:3.10.0'
implementation 'javax.cache:cache-api:1.0.0'
testImplementation('org.springframework.boot:spring-boot-starter-test')
implementation('org.springframework.boot:spring-boot-starter-jdbc')
implementation('mysql:mysql-connector-java:8.0.23')
compileOnly 'org.projectlombok:lombok'
compileOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.11'
}
tasks.named('test') {
useJUnitPlatform()
}