-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (39 loc) · 1.1 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
plugins {
id 'org.springframework.boot' version '2.6.7'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'war'
}
group = 'deu'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
/* JPA */
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
/* Tomcat */
implementation 'org.springframework.boot:spring-boot-starter-web'
/* Jstl */
implementation 'javax.servlet:jstl'
/* Jasper */
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
/* Java Lombok */
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
/* MySQL */
runtimeOnly 'mysql:mysql-connector-java'
/* Swagger UI */
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
}
tasks.named('test') {
useJUnitPlatform()
}