-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (45 loc) · 1.68 KB
/
build.gradle
File metadata and controls
58 lines (45 loc) · 1.68 KB
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
55
56
57
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.6.1/userguide/tutorial_java_projects.html
*/
plugins {
id 'java'
id 'eclipse-wtp'
id 'war'
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
// Spring WebMVC라이브러리
implementation 'org.springframework:spring-webmvc:5.3.2'
// Thumbnailator 썸네일 생성 라이브러리
implementation 'net.coobird:thumbnailator:0.4.13'
// Apache의 파일업로드 처리 라이브러리
implementation 'commons-fileupload:commons-fileupload:1.4'
// jstl 라이브러리
implementation 'jstl:jstl:1.2'
// Servlet-API
// => 컴파일 할 때만 사용한다.
// => 배치할 때는 포함하지 않는다.
// => 왜? 서버에 이미 이 라이브러리가 있기 때문이다.
//
compileOnly 'javax.servlet:javax.servlet-api:4.0.1'
// Mybatis 퍼시스턴스 프레임워크
implementation 'org.mybatis:mybatis:3.5.6'
// MariaDB JDBC 드라이버
implementation 'org.mariadb.jdbc:mariadb-java-client:2.7.0'
// JSON 라이브러리
implementation 'com.google.code.gson:gson:2.8.6'
// This dependency is used by the application.
implementation 'com.google.guava:guava:29.0-jre'
// Use JUnit test framework
testImplementation 'junit:junit:4.13'
// Use Jsoup crawler framework
implementation 'org.jsoup:jsoup:1.13.1'
}