2020-03-28 17:50:20 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-08 13:11:36 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-06-26 16:25:51 +05:30
|
|
|
<artifactId>core-java-collections-maps-5</artifactId>
|
2021-05-08 13:11:36 +05:30
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
2022-06-26 16:25:51 +05:30
|
|
|
<name>core-java-collections-maps-5</name>
|
2021-05-08 13:11:36 +05:30
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-03-28 17:50:20 +03:00
|
|
|
<parent>
|
2022-05-04 20:15:22 +05:30
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
2020-03-28 17:50:20 +03:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2020-03-28 17:50:20 +03:00
|
|
|
|
2020-03-28 17:50:20 +03:00
|
|
|
<dependencies>
|
2022-01-19 20:19:11 +05:30
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2022-05-15 08:53:05 +02:00
|
|
|
<version>${junit-jupiter.version}</version>
|
2022-01-19 20:19:11 +05:30
|
|
|
</dependency>
|
2020-03-28 17:50:20 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-05-08 13:11:36 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>${commons-collections4.version}</version>
|
|
|
|
</dependency>
|
2020-03-28 17:50:20 +03:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<spring.version>5.2.5.RELEASE</spring.version>
|
|
|
|
</properties>
|
2021-08-03 00:27:15 +05:30
|
|
|
|
2021-05-08 13:11:36 +05:30
|
|
|
</project>
|