|
8 | 8 | <modelVersion>4.0.0</modelVersion> |
9 | 9 |
|
10 | 10 | <artifactId>springmvcexample</artifactId> |
11 | | - <packaging>jar</packaging> |
| 11 | + <packaging>war</packaging> |
12 | 12 |
|
13 | 13 | <name>springmvcexample</name> |
14 | 14 | <url>http://maven.apache.org</url> |
|
18 | 18 | </properties> |
19 | 19 |
|
20 | 20 | <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>com.google.guava</groupId> |
| 23 | + <artifactId>guava</artifactId> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>org.springframework.data</groupId> |
| 27 | + <artifactId>spring-data-elasticsearch</artifactId> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.springframework</groupId> |
| 31 | + <artifactId>spring-context</artifactId> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework</groupId> |
| 35 | + <artifactId>spring-test</artifactId> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>org.apache.commons</groupId> |
| 40 | + <artifactId>commons-collections4</artifactId> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.apache.commons</groupId> |
| 44 | + <artifactId>commons-lang3</artifactId> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework</groupId> |
| 48 | + <artifactId>spring-webmvc</artifactId> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework</groupId> |
| 52 | + <artifactId>spring-context-support</artifactId> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.slf4j</groupId> |
| 56 | + <artifactId>slf4j-api</artifactId> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.slf4j</groupId> |
| 60 | + <artifactId>jcl-over-slf4j</artifactId> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.slf4j</groupId> |
| 64 | + <artifactId>jul-to-slf4j</artifactId> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.slf4j</groupId> |
| 68 | + <artifactId>log4j-over-slf4j</artifactId> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>ch.qos.logback</groupId> |
| 72 | + <artifactId>logback-classic</artifactId> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>ch.qos.logback</groupId> |
| 76 | + <artifactId>logback-core</artifactId> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>javax.servlet</groupId> |
| 80 | + <artifactId>servlet-api</artifactId> |
| 81 | + <scope>provided</scope> |
| 82 | + </dependency> |
21 | 83 |
|
22 | 84 | <dependency> |
23 | | - <groupId>junit</groupId> |
24 | | - <artifactId>junit</artifactId> |
| 85 | + <groupId>javax.servlet</groupId> |
| 86 | + <artifactId>jstl</artifactId> |
25 | 87 | </dependency> |
26 | 88 | </dependencies> |
27 | 89 | </project> |
0 commit comments