|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <parent> |
| 6 | + <groupId>com.mt.multimodule</groupId> |
| 7 | + <artifactId>MultipleModulesMaven</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + <groupId>com.mt.multimodule</groupId> |
| 11 | + <artifactId>multimodule-web</artifactId> |
| 12 | + <version>0.0.1-SNAPSHOT</version> |
| 13 | + <packaging>war</packaging> |
| 14 | + <name>multimodule-web Maven Webapp</name> |
| 15 | + <url>http://maven.apache.org</url> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <!-- Spring test requires 1.7 onwards. don't down grade version --> |
| 19 | + <!-- <jdk.version>1.6</jdk.version> --> |
| 20 | + <spring.version>4.1.4.RELEASE</spring.version> |
| 21 | + <junit.version>4.11</junit.version> |
| 22 | + <log4j.version>1.2.17</log4j.version> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <dependencies> |
| 26 | + <dependency> |
| 27 | + <groupId>junit</groupId> |
| 28 | + <artifactId>junit</artifactId> |
| 29 | + <version>3.8.1</version> |
| 30 | + <scope>test</scope> |
| 31 | + </dependency> |
| 32 | + |
| 33 | + <dependency> |
| 34 | + <groupId>org.json</groupId> |
| 35 | + <artifactId>json</artifactId> |
| 36 | + <version>20160212</version> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>javax.servlet</groupId> |
| 41 | + <artifactId>servlet-api</artifactId> |
| 42 | + <version>2.5</version> |
| 43 | + <scope>provided</scope> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework</groupId> |
| 48 | + <artifactId>spring-core</artifactId> |
| 49 | + <version>${spring.version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework</groupId> |
| 53 | + <artifactId>spring-web</artifactId> |
| 54 | + <version>${spring.version}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.springframework</groupId> |
| 58 | + <artifactId>spring-webmvc</artifactId> |
| 59 | + <version>${spring.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.springframework</groupId> |
| 63 | + <artifactId>spring-context</artifactId> |
| 64 | + <version>${spring.version}</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>javax</groupId> |
| 68 | + <artifactId>javaee-web-api</artifactId> |
| 69 | + <version>7.0</version> |
| 70 | + <scope>provided</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>javax.servlet</groupId> |
| 74 | + <artifactId>javax.servlet-api</artifactId> |
| 75 | + <version>3.1.0</version> |
| 76 | + </dependency> |
| 77 | + <!-- http://mvnrepository.com/artifact/org.springframework/spring-jdbc --> |
| 78 | + <dependency> |
| 79 | + <groupId>org.springframework</groupId> |
| 80 | + <artifactId>spring-jdbc</artifactId> |
| 81 | + <version>${spring.version}</version> |
| 82 | + </dependency> |
| 83 | + </dependencies> |
| 84 | + <build> |
| 85 | + <finalName>multimodule-web</finalName> |
| 86 | + </build> |
| 87 | +</project> |
0 commit comments