|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.best</groupId> |
| 5 | + <artifactId>springmvc</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <name>springmvc Maven Webapp</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + <build> |
| 11 | + <finalName>springmvc</finalName> |
| 12 | + </build> |
| 13 | + <dependencies> |
| 14 | + <dependency> |
| 15 | + <groupId>junit</groupId> |
| 16 | + <artifactId>junit</artifactId> |
| 17 | + <version>4.12</version> |
| 18 | + </dependency> |
| 19 | + <dependency> |
| 20 | + <groupId>org.mockito</groupId> |
| 21 | + <artifactId>mockito-all</artifactId> |
| 22 | + <version>2.0.2-beta</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.hibernate.javax.persistence</groupId> |
| 26 | + <artifactId>hibernate-jpa-2.1-api</artifactId> |
| 27 | + <version>1.0.0.Draft-16</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>log4j</groupId> |
| 31 | + <artifactId>log4j</artifactId> |
| 32 | + <version>1.2.17</version> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>org.springframework</groupId> |
| 36 | + <artifactId>spring-webmvc</artifactId> |
| 37 | + <version>4.2.5.RELEASE</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework</groupId> |
| 41 | + <artifactId>spring-web</artifactId> |
| 42 | + <version>4.2.5.RELEASE</version> |
| 43 | + </dependency> |
| 44 | + </dependencies> |
| 45 | + <dependencyManagement> |
| 46 | + <dependencies> |
| 47 | + <dependency> |
| 48 | + <groupId>org.mockito</groupId> |
| 49 | + <artifactId>mockito-all</artifactId> |
| 50 | + <version>2.0.2-beta</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>junit</groupId> |
| 54 | + <artifactId>junit</artifactId> |
| 55 | + <version>4.12</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>hibernate</groupId> |
| 59 | + <artifactId>hibernate</artifactId> |
| 60 | + <version>3.1rc2</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>log4j</groupId> |
| 64 | + <artifactId>log4j</artifactId> |
| 65 | + <version>1.2.17</version> |
| 66 | + <type>bundle</type> |
| 67 | + </dependency> |
| 68 | + </dependencies> |
| 69 | + </dependencyManagement> |
| 70 | +</project> |
0 commit comments