2020-03-28 10:50:20 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-08 03:41:36 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-06-26 06:55:51 -04:00
|
|
|
<artifactId>core-java-collections-maps-5</artifactId>
|
2021-05-08 03:41:36 -04:00
|
|
|
<packaging>jar</packaging>
|
2024-03-15 17:43:53 -04:00
|
|
|
<name>core-java-collections-maps-5</name>
|
2021-05-08 03:41:36 -04:00
|
|
|
|
2020-03-28 10:50:20 -04:00
|
|
|
<parent>
|
2022-05-04 10:45:22 -04:00
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
2020-03-28 10:50:20 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2020-03-28 10:50:20 -04:00
|
|
|
|
2020-03-28 10:50:20 -04:00
|
|
|
<dependencies>
|
2022-01-19 09:49:11 -05:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2022-05-15 02:53:05 -04:00
|
|
|
<version>${junit-jupiter.version}</version>
|
2022-01-19 09:49:11 -05:00
|
|
|
</dependency>
|
2020-03-28 10:50:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-05-08 03:41:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>${commons-collections4.version}</version>
|
|
|
|
</dependency>
|
2020-03-28 10:50:20 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2022-12-20 12:07:54 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>9</source>
|
|
|
|
<target>9</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-03-28 10:50:20 -04:00
|
|
|
<properties>
|
|
|
|
<spring.version>5.2.5.RELEASE</spring.version>
|
|
|
|
</properties>
|
2021-08-02 14:57:15 -04:00
|
|
|
|
2021-05-08 03:41:36 -04:00
|
|
|
</project>
|