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 17:42:38 +05:30
|
|
|
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 20:13:14 +05:30
|
|
|
<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 15:34:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-expression</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2020-07-15 17:29:08 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
2020-05-28 15:34:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2020-06-20 23:32:32 +05:30
|
|
|
<version>${guava.version}</version>
|
2020-05-28 15:34:00 -05: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 15:34:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
2020-06-20 23:32:32 +05:30
|
|
|
<version>${awaitility.version}</version>
|
2020-05-28 15:34:00 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-07-19 20:13:14 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2022-01-17 14:03:32 +01:00
|
|
|
<version>${servlet-api.version}</version>
|
2020-07-19 20:13:14 +05:30
|
|
|
</dependency>
|
2023-03-06 16:52:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
<version>${annotation-api.version}</version>
|
|
|
|
</dependency>
|
2023-07-28 21:44:51 +07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
2023-10-15 19:25:42 +03:00
|
|
|
<version>${commons-text.version}</version>
|
2023-07-28 21:44:51 +07:00
|
|
|
</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 23:32:32 +05:30
|
|
|
<awaitility.version>4.0.2</awaitility.version>
|
2022-01-17 14:03:32 +01:00
|
|
|
<servlet-api.version>4.0.0</servlet-api.version>
|
2023-03-06 16:52:07 +02:00
|
|
|
<annotation-api.version>1.3.2</annotation-api.version>
|
2023-10-15 19:25:42 +03:00
|
|
|
<commons-text.version>1.10.0</commons-text.version>
|
2020-04-21 14:27:42 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-14 17:42:38 +05:30
|
|
|
</project>
|