2020-04-21 14:27:42 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-14 08:12:38 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2020-04-21 14:27:42 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-core-4</artifactId>
|
|
|
|
<name>spring-core-4</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-spring-5</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-spring-5</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2020-07-19 10:43:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2020-05-28 16:34:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-expression</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2020-07-15 07:59:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
2020-05-28 16:34:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2020-06-20 14:02:32 -04:00
|
|
|
<version>${guava.version}</version>
|
2020-05-28 16:34:00 -04:00
|
|
|
</dependency>
|
2020-04-21 14:27:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-05-28 16:34:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
2020-06-20 14:02:32 -04:00
|
|
|
<version>${awaitility.version}</version>
|
2020-05-28 16:34:00 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-07-19 10:43:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2022-01-17 08:03:32 -05:00
|
|
|
<version>${servlet-api.version}</version>
|
2020-07-19 10:43:14 -04:00
|
|
|
</dependency>
|
2023-03-06 09:52:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
<version>${annotation-api.version}</version>
|
|
|
|
</dependency>
|
2020-04-21 14:27:42 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<annotation-api.version>1.3.2</annotation-api.version>
|
|
|
|
<spring.boot.version>2.2.2.RELEASE</spring.boot.version>
|
2020-06-20 14:02:32 -04:00
|
|
|
<awaitility.version>4.0.2</awaitility.version>
|
2022-01-17 08:03:32 -05:00
|
|
|
<servlet-api.version>4.0.0</servlet-api.version>
|
2023-03-06 09:52:07 -05:00
|
|
|
<annotation-api.version>1.3.2</annotation-api.version>
|
|
|
|
<maven-war-plugin.version>3.3.2</maven-war-plugin.version>
|
2020-04-21 14:27:42 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-14 08:12:38 -04:00
|
|
|
</project>
|