<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" 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> <artifactId>libraries-stream</artifactId> <version>0.0.1-SNAPSHOT</version> <name>libraries-stream</name> <packaging>jar</packaging> <parent> <groupId>com.baeldung</groupId> <artifactId>parent-modules</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>org.jooq</groupId> <artifactId>jool</artifactId> <version>${jool.version}</version> </dependency> <dependency> <groupId>com.pivovarit</groupId> <artifactId>parallel-collectors</artifactId> <version>${parallel-collectors.version}</version> </dependency> <dependency> <groupId>io.vavr</groupId> <artifactId>vavr</artifactId> <version>${vavr.version}</version> </dependency> <dependency> <groupId>org.eclipse.collections</groupId> <artifactId>eclipse-collections</artifactId> <version>${eclipse-collections.version}</version> </dependency> <dependency> <groupId>one.util</groupId> <artifactId>streamex</artifactId> <version>${streamex.version}</version> </dependency> <dependency> <groupId>com.codepoetics</groupId> <artifactId>protonpack</artifactId> <version>${protonpack.version}</version> </dependency> </dependencies> <properties> <jool.version>0.9.12</jool.version> <parallel-collectors.version>1.1.0</parallel-collectors.version> <vavr.version>0.9.0</vavr.version> <eclipse-collections.version>8.2.0</eclipse-collections.version> <streamex.version>0.8.1</streamex.version> <protonpack.version>1.15</protonpack.version> </properties> </project>