|
1 | 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.xvitcoder.angularspringapp</groupId> |
5 |
| - <artifactId>AngularSpringApp</artifactId> |
6 |
| - <packaging>war</packaging> |
7 |
| - <version>1.0-SNAPSHOT</version> |
8 |
| - <name>AngularSpringApp Maven Webapp</name> |
9 |
| - <url>http://maven.apache.org</url> |
10 |
| - <dependencies> |
11 |
| - |
12 |
| - <dependency> |
13 |
| - <groupId>org.springframework</groupId> |
14 |
| - <artifactId>spring-webmvc</artifactId> |
15 |
| - <version>3.1.2.RELEASE</version> |
16 |
| - </dependency> |
17 |
| - |
18 |
| - <dependency> |
19 |
| - <groupId>org.apache.velocity</groupId> |
20 |
| - <artifactId>velocity</artifactId> |
21 |
| - <version>1.7</version> |
22 |
| - </dependency> |
23 |
| - |
24 |
| - <dependency> |
25 |
| - <groupId>org.codehaus.jackson</groupId> |
26 |
| - <artifactId>jackson-mapper-asl</artifactId> |
27 |
| - <version>1.9.12</version> |
28 |
| - </dependency> |
29 |
| - |
30 |
| - |
31 |
| - </dependencies> |
32 |
| - <build> |
33 |
| - <finalName>AngularSpringApp</finalName> |
34 |
| - </build> |
| 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.xvitcoder.springmvcangularjs</groupId> |
| 5 | + <artifactId>spring-mvc-angularjs</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>1.1</version> |
| 8 | + <name>AngularSpringApp Maven Webapp</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + <dependencies> |
| 11 | + |
| 12 | + <dependency> |
| 13 | + <groupId>org.springframework</groupId> |
| 14 | + <artifactId>spring-webmvc</artifactId> |
| 15 | + <version>4.2.4.RELEASE</version> |
| 16 | + </dependency> |
| 17 | + |
| 18 | + <dependency> |
| 19 | + <groupId>javax.servlet</groupId> |
| 20 | + <artifactId>javax.servlet-api</artifactId> |
| 21 | + <version>3.0.1</version> |
| 22 | + <scope>provided</scope> |
| 23 | + </dependency> |
| 24 | + |
| 25 | + <dependency> |
| 26 | + <groupId>org.thymeleaf</groupId> |
| 27 | + <artifactId>thymeleaf-spring4</artifactId> |
| 28 | + <version>2.1.4.RELEASE</version> |
| 29 | + </dependency> |
| 30 | + |
| 31 | + <dependency> |
| 32 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 33 | + <artifactId>jackson-core</artifactId> |
| 34 | + <version>2.1.0</version> |
| 35 | + </dependency> |
| 36 | + |
| 37 | + <dependency> |
| 38 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 39 | + <artifactId>jackson-databind</artifactId> |
| 40 | + <version>2.1.0</version> |
| 41 | + </dependency> |
| 42 | + |
| 43 | + </dependencies> |
| 44 | + <build> |
| 45 | + <finalName>spring-mvc-angularjs</finalName> |
| 46 | + |
| 47 | + <plugins> |
| 48 | + <plugin> |
| 49 | + <groupId>org.apache.maven.plugins</groupId> |
| 50 | + <artifactId>maven-war-plugin</artifactId> |
| 51 | + <version>2.5</version> |
| 52 | + <configuration> |
| 53 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 54 | + </configuration> |
| 55 | + </plugin> |
| 56 | + |
| 57 | + <plugin> |
| 58 | + <groupId>org.apache.tomcat.maven</groupId> |
| 59 | + <artifactId>tomcat7-maven-plugin</artifactId> |
| 60 | + <version>2.2</version> |
| 61 | + <configuration> |
| 62 | + <port>8080</port> |
| 63 | + <path>/spring-mvc-angularjs</path> |
| 64 | + </configuration> |
| 65 | + </plugin> |
| 66 | + </plugins> |
| 67 | + </build> |
35 | 68 | </project>
|
0 commit comments