2020-05-28 12:13:57 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
2020-06-23 22:06:50 -04:00
|
|
|
<artifactId>spring-framework-web</artifactId>
|
2020-05-28 12:13:57 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2020-06-23 22:06:50 -04:00
|
|
|
<name>spring-framework-web</name>
|
2020-05-28 12:13:57 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-spring-5</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-spring-5</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2020-05-29 18:23:01 -04:00
|
|
|
<properties>
|
2020-06-01 11:35:39 -04:00
|
|
|
<commons-io.version>2.6</commons-io.version>
|
2020-05-29 18:23:01 -04:00
|
|
|
<junit.version>4.12</junit.version>
|
2020-06-02 16:09:16 -04:00
|
|
|
<org.assertj.assertj-core.version>3.15.0</org.assertj.assertj-core.version>
|
2020-05-29 18:23:01 -04:00
|
|
|
<org.springframework.spring-mock.version>2.0.8</org.springframework.spring-mock.version>
|
|
|
|
</properties>
|
|
|
|
|
2020-05-28 12:13:57 -04:00
|
|
|
<dependencies>
|
2020-06-01 11:35:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
</dependency>
|
2020-06-02 16:09:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${org.assertj.assertj-core.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-05-28 12:13:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-mock</artifactId>
|
2020-05-29 18:23:01 -04:00
|
|
|
<version>${org.springframework.spring-mock.version}</version>
|
2020-05-28 12:13:57 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-05-29 18:23:01 -04:00
|
|
|
<version>${junit.version}</version>
|
2020-05-28 12:13:57 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|