58 lines
2.1 KiB
XML
58 lines
2.1 KiB
XML
|
<?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>kotlin-libraries-2</artifactId>
|
||
|
<name>kotlin-libraries-2</name>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-kotlin</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
<relativePath>../parent-kotlin</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||
|
<artifactId>jackson-module-kotlin</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.reactivex.rxjava2</groupId>
|
||
|
<artifactId>rxkotlin</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<version>${guava.version}</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-collections-immutable -->
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||
|
<artifactId>kotlinx-collections-immutable</artifactId>
|
||
|
<version>${kotlinx-collections-immutable.version}</version>
|
||
|
</dependency>
|
||
|
<!-- MockK dependencies-->
|
||
|
<dependency>
|
||
|
<groupId>io.mockk</groupId>
|
||
|
<artifactId>mockk</artifactId>
|
||
|
<version>${mockk.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<guava.version>27.1-jre</guava.version>
|
||
|
<mockk.version>1.9.3</mockk.version>
|
||
|
<kotlinx-collections-immutable.version>0.1</kotlinx-collections-immutable.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|