2018-04-29 02:38:59 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
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>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>core-java-collections</artifactId>
|
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>core-java-collections</name>
|
2018-04-29 02:38:59 -04:00
|
|
|
|
2018-07-12 03:04:54 -04:00
|
|
|
<parent>
|
2018-05-05 16:30:00 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-java</artifactId>
|
2018-07-12 03:04:54 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-java</relativePath>
|
2018-05-05 16:30:00 -04:00
|
|
|
</parent>
|
2018-04-29 02:38:59 -04:00
|
|
|
|
2018-07-12 03:04:54 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.collections</groupId>
|
|
|
|
<artifactId>collections-generic</artifactId>
|
|
|
|
<version>${collections-generic.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>${commons-collections4.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
<version>${avaitility.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>${commons-lang3.version}</version>
|
|
|
|
</dependency>
|
2018-07-23 23:40:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.collections</groupId>
|
|
|
|
<artifactId>eclipse-collections-api</artifactId>
|
2018-07-25 16:36:17 -04:00
|
|
|
<version>${eclipse.collections.version}</version>
|
2018-07-23 23:40:13 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.collections</groupId>
|
|
|
|
<artifactId>eclipse-collections</artifactId>
|
2018-07-25 16:36:17 -04:00
|
|
|
<version>${eclipse.collections.version}</version>
|
2018-07-23 23:40:13 -04:00
|
|
|
</dependency>
|
2018-07-12 03:04:54 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-07-23 23:40:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-runner</artifactId>
|
|
|
|
<version>${junit.platform.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-07-12 03:04:54 -04:00
|
|
|
</dependencies>
|
2018-04-29 02:38:59 -04:00
|
|
|
|
2018-07-12 03:04:54 -04:00
|
|
|
<properties>
|
2018-07-23 23:40:13 -04:00
|
|
|
<junit.platform.version>1.2.0</junit.platform.version>
|
2018-07-12 03:04:54 -04:00
|
|
|
<commons-lang3.version>3.5</commons-lang3.version>
|
|
|
|
<commons-collections4.version>4.1</commons-collections4.version>
|
|
|
|
<collections-generic.version>4.01</collections-generic.version>
|
|
|
|
<avaitility.version>1.7.0</avaitility.version>
|
|
|
|
<assertj.version>3.6.1</assertj.version>
|
2018-07-25 16:36:17 -04:00
|
|
|
<eclipse.collections.version>9.2.0</eclipse.collections.version>
|
2018-07-12 03:04:54 -04:00
|
|
|
</properties>
|
2018-04-29 02:38:59 -04:00
|
|
|
</project>
|