2019-05-25 11:03:17 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-05-24 14:01:37 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-mvc-basics</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-mvc-basics</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>parent-spring-5</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-spring-5</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2019-05-25 11:03:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2019-05-24 14:01:37 -04:00
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2019-05-25 11:03:17 -04:00
|
|
|
<version>${javax.servlet-api.version}</version>
|
2019-05-24 14:01:37 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
2019-05-25 11:03:17 -04:00
|
|
|
<version>${javax.jsp-api.version}</version>
|
2019-05-24 14:01:37 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>${jstl.version}</version>
|
|
|
|
</dependency>
|
2019-05-26 14:30:12 -04:00
|
|
|
|
|
|
|
<!-- Jackson -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2019-05-24 14:01:37 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
2019-05-25 11:03:17 -04:00
|
|
|
<version>${spring.version}</version>
|
2019-05-24 14:01:37 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-26 14:30:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<version>${jayway.json-path.version}</version>
|
|
|
|
</dependency>
|
2019-05-24 14:01:37 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>spring-mvc-basics</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2019-05-25 11:03:17 -04:00
|
|
|
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
|
|
|
|
<javax.jsp-api.version>2.3.3</javax.jsp-api.version>
|
2019-05-26 14:30:12 -04:00
|
|
|
<jayway.json-path.version>2.4.0</jayway.json-path.version>
|
2019-05-24 14:01:37 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|