-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (46 loc) · 2.2 KB
/
build.gradle
File metadata and controls
66 lines (46 loc) · 2.2 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
58
59
60
61
62
63
64
65
plugins {
id 'java'
id 'eclipse-wtp'
id 'war'
}
repositories {
jcenter()
}
dependencies {
// MariaDB JDBC Driver
compile group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.4.3'
// Mybatis Persistence Framework
compile group: 'org.mybatis', name: 'mybatis', version: '3.5.2'
// Spring IoC 컨테이너 - Spring Web MVC를 추가하면 이 라이브러리는 자동으로 포함된다.
// compile group: 'org.springframework', name: 'spring-context', version: '5.1.9.RELEASE'
// Spring JDBC
compile group: 'org.springframework', name: 'spring-jdbc', version: '5.1.9.RELEASE'
// MyBatis-Spring
compile group: 'org.mybatis', name: 'mybatis-spring', version: '2.0.2'
// Spring Web MVC
compile group: 'org.springframework', name: 'spring-webmvc', version: '5.1.9.RELEASE'
// log4j 2
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.12.1'
// HTTPclient
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.9'
// Java Servlet API
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
// JSTL
compile group: 'javax.servlet', name: 'jstl', version: '1.2'
// Javax Annotation API(for OpenJDK, Oracle JDK includes this library)
compile group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
// Reflections
compile group: 'org.reflections', name: 'reflections', version: '0.9.11'
// JSON 데이터 처리
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.10'
// 파일 업로드 처리 (Apache Commons Fileupload)
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.4'
// 이메일 전송
// compile group: 'javax.mail', name: 'javax.mail-api', version: '1.6.2'
// 이메일 전송
compile group: 'javax.mail', name: 'mail', version: '1.4.7'
// 썸네일 이미지 만들기
compile group: 'net.coobird', name: 'thumbnailator', version: '0.4.8'
implementation 'com.google.guava:guava:27.1-jre'
testImplementation 'junit:junit:4.12'
}