Skip to content

Commit d47f325

Browse files
committed
메이븐 설정 파일을 다른 브랜치와 일치시킴
1 parent 1038fe2 commit d47f325

File tree

1 file changed

+32
-27
lines changed

1 file changed

+32
-27
lines changed

pom.xml

+32-27
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1111
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1212

13-
<org.springframework.version>3.2.9.RELEASE</org.springframework.version>
13+
<org.springframework.version>4.2.5.RELEASE</org.springframework.version>
1414
<tomcat.version>8.0.15</tomcat.version>
1515
</properties>
1616

@@ -24,12 +24,24 @@
2424
</dependency>
2525

2626
<!-- servlet -->
27+
<dependency>
28+
<groupId>javax.servlet</groupId>
29+
<artifactId>javax.servlet-api</artifactId>
30+
<version>3.1.0</version>
31+
<scope>provided</scope>
32+
</dependency>
2733
<dependency>
2834
<groupId>javax.servlet</groupId>
2935
<artifactId>jstl</artifactId>
3036
<version>1.2</version>
3137
</dependency>
3238

39+
<dependency>
40+
<groupId>com.google.guava</groupId>
41+
<artifactId>guava</artifactId>
42+
<version>18.0</version>
43+
</dependency>
44+
3345
<dependency>
3446
<groupId>com.h2database</groupId>
3547
<artifactId>h2</artifactId>
@@ -41,9 +53,9 @@
4153
<version>3.3.2</version>
4254
</dependency>
4355
<dependency>
44-
<groupId>commons-dbcp</groupId>
45-
<artifactId>commons-dbcp</artifactId>
46-
<version>1.2.2</version>
56+
<groupId>org.apache.commons</groupId>
57+
<artifactId>commons-dbcp2</artifactId>
58+
<version>2.1.1</version>
4759
</dependency>
4860
<dependency>
4961
<groupId>org.springframework</groupId>
@@ -56,19 +68,25 @@
5668
<version>${org.springframework.version}</version>
5769
</dependency>
5870

59-
<!-- logger -->
71+
<dependency>
72+
<groupId>org.reflections</groupId>
73+
<artifactId>reflections</artifactId>
74+
<version>0.9.10</version>
75+
</dependency>
76+
6077
<dependency>
6178
<groupId>ch.qos.logback</groupId>
6279
<artifactId>logback-classic</artifactId>
6380
<version>1.1.2</version>
6481
</dependency>
6582
<dependency>
66-
<groupId>javax.servlet</groupId>
67-
<artifactId>javax.servlet-api</artifactId>
68-
<version>3.1.0</version>
69-
<scope>provided</scope>
83+
<groupId>com.fasterxml.jackson.core</groupId>
84+
<artifactId>jackson-databind</artifactId>
85+
<version>2.4.4</version>
7086
</dependency>
7187

88+
89+
<!-- tomcat -->
7290
<dependency>
7391
<groupId>org.apache.tomcat.embed</groupId>
7492
<artifactId>tomcat-embed-core</artifactId>
@@ -87,30 +105,14 @@
87105
<version>${tomcat.version}</version>
88106
<scope>provided</scope>
89107
</dependency>
90-
<dependency>
91-
<groupId>org.apache.tomcat</groupId>
92-
<artifactId>tomcat-jasper</artifactId>
93-
<version>${tomcat.version}</version>
94-
<scope>provided</scope>
95-
</dependency>
96-
<dependency>
97-
<groupId>org.apache.tomcat</groupId>
98-
<artifactId>tomcat-jasper-el</artifactId>
99-
<version>${tomcat.version}</version>
100-
<scope>provided</scope>
101-
</dependency>
102-
<dependency>
103-
<groupId>org.apache.tomcat</groupId>
104-
<artifactId>tomcat-jsp-api</artifactId>
105-
<version>${tomcat.version}</version>
106-
<scope>provided</scope>
107-
</dependency>
108108
</dependencies>
109109

110110
<build>
111111
<finalName>jwp-basic</finalName>
112112
<sourceDirectory>src/main/java</sourceDirectory>
113+
<testSourceDirectory>src/test/java</testSourceDirectory>
113114
<outputDirectory>webapp/WEB-INF/classes</outputDirectory>
115+
<testOutputDirectory>target/test-classes</testOutputDirectory>
114116

115117
<resources>
116118
<resource>
@@ -130,6 +132,9 @@
130132
<plugin>
131133
<artifactId>maven-eclipse-plugin</artifactId>
132134
<version>2.9</version>
135+
<configuration>
136+
<downloadSources>true</downloadSources>
137+
</configuration>
133138
</plugin>
134139
<plugin>
135140
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)