-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
77 lines (58 loc) ยท 2.36 KB
/
build.gradle
File metadata and controls
77 lines (58 loc) ยท 2.36 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
66
67
68
69
70
71
72
73
74
75
76
/*
* 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 {
// @Resource ์ ๋
ธํ
์ด์
์ด ๋ค์ด์๋ API
implementation 'javax.annotation:javax.annotation-api:1.3.2'
// Spring IOC ํ๋ ์์ํฌ
implementation 'org.springframework:spring-context:5.3.2'
// Spring WebMVC๋ผ์ด๋ธ๋ฌ๋ฆฌ
implementation 'org.springframework:spring-webmvc:5.3.2'
// log4j 2.x ๋ผ์ด๋ธ๋ฌ๋ฆฌ
implementation 'org.apache.logging.log4j:log4j-core:2.14.0'
// 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'
// Tiles ๋ผ์ด๋ธ๋ฌ๋ฆฌ
implementation 'org.apache.tiles:tiles-jsp:3.0.8'
// Spring JDBC ๋ณด์กฐ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
// - DataSource ๊ตฌํ์ฒด๊ฐ ๋ค์ด์๋ค.
implementation 'org.springframework:spring-jdbc:5.3.2'
// Mybatis๋ฅผ Spring๊ณผ ์ฐ๋ํ ๋ ์ฌ์ฉํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
implementation 'org.mybatis:mybatis-spring:2.0.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'
}