forked from EoneTrance/greenright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (53 loc) · 2.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
plugins {
id 'java'
id 'war'
id 'eclipse-wtp'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
repositories {
jcenter()
}
dependencies {
// Mybatis Persistence Framework
compile group: 'org.mybatis', name: 'mybatis', version: '3.5.2'
// MariaDB JDBC Driver
compile group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.4.3'
// Spring IoC 컨테이너
compile group: 'org.springframework', name: 'spring-context', version: '5.1.9.RELEASE'
// Spring Context Support
compile group: 'org.springframework', name: 'spring-context-support', 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 WebMVC
compile group: 'org.springframework', name: 'spring-webmvc', version: '5.1.9.RELEASE'
// Log4j2
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.12.1'
// Apache HttpClient
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.9'
// 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'
// Java mail
compile group: 'com.sun.mail', name: 'javax.mail', version: '1.6.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'
// 파일 업로드 처리
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.4'
// Tiles 뷰 템플릿 엔진
compile group: 'org.apache.tiles', name: 'tiles-jsp', version: '3.0.8'
// GSON
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
implementation 'com.google.guava:guava:27.1-jre'
testImplementation 'junit:junit:4.12'
}