|
| 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>jbr.springmvc</groupId> |
| 5 | + <artifactId>springmvc-derby</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>0.1</version> |
| 8 | + <name>springmvc-derby Maven Webapp</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | + <spring.version>4.3.2.RELEASE</spring.version> |
| 14 | + <derby.version>10.12.1.1</derby.version> |
| 15 | + <junit.version>4.12</junit.version> |
| 16 | + <servlet.version>3.0.1</servlet.version> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <dependencies> |
| 20 | + <!-- Junit --> |
| 21 | + <dependency> |
| 22 | + <groupId>junit</groupId> |
| 23 | + <artifactId>junit</artifactId> |
| 24 | + <version>${junit.version}</version> |
| 25 | + <scope>test</scope> |
| 26 | + </dependency> |
| 27 | + |
| 28 | + <!--Servlet-Api --> |
| 29 | + <dependency> |
| 30 | + <groupId>javax.servlet</groupId> |
| 31 | + <artifactId>javax.servlet-api</artifactId> |
| 32 | + <version>${servlet.version}</version> |
| 33 | + </dependency> |
| 34 | + |
| 35 | + <!-- Spring Framework --> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework</groupId> |
| 38 | + <artifactId>spring-core</artifactId> |
| 39 | + <version>${spring.version}</version> |
| 40 | + </dependency> |
| 41 | + |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework</groupId> |
| 44 | + <artifactId>spring-beans</artifactId> |
| 45 | + <version>${spring.version}</version> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework</groupId> |
| 50 | + <artifactId>spring-context</artifactId> |
| 51 | + <version>${spring.version}</version> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <dependency> |
| 55 | + <groupId>org.springframework</groupId> |
| 56 | + <artifactId>spring-test</artifactId> |
| 57 | + <version>${spring.version}</version> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework</groupId> |
| 62 | + <artifactId>spring-jdbc</artifactId> |
| 63 | + <version>${spring.version}</version> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <groupId>org.springframework</groupId> |
| 68 | + <artifactId>spring-webmvc</artifactId> |
| 69 | + <version>${spring.version}</version> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework</groupId> |
| 74 | + <artifactId>spring-aop</artifactId> |
| 75 | + <version>${spring.version}</version> |
| 76 | + </dependency> |
| 77 | + <!-- DERBY DB --> |
| 78 | + <dependency> |
| 79 | + <groupId>org.apache.derby</groupId> |
| 80 | + <artifactId>derby</artifactId> |
| 81 | + <version>${derby.version}</version> |
| 82 | + </dependency> |
| 83 | + </dependencies> |
| 84 | + <build> |
| 85 | + <finalName>springmvc-derby</finalName> |
| 86 | + </build> |
| 87 | +</project> |
0 commit comments