88 lines
3.2 KiB
XML
88 lines
3.2 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>core-kotlin</artifactId>
|
||
|
<name>core-kotlin</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>org.apache.commons</groupId>
|
||
|
<artifactId>commons-math3</artifactId>
|
||
|
<version>${commons-math3.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>${commons-lang3.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.platform</groupId>
|
||
|
<artifactId>junit-platform-runner</artifactId>
|
||
|
<version>${junit.platform.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.assertj</groupId>
|
||
|
<artifactId>assertj-core</artifactId>
|
||
|
<version>${assertj.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.h2database</groupId>
|
||
|
<artifactId>h2</artifactId>
|
||
|
<version>${h2.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.kittinunf.fuel</groupId>
|
||
|
<artifactId>fuel</artifactId>
|
||
|
<version>${fuel.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.kittinunf.fuel</groupId>
|
||
|
<artifactId>fuel-gson</artifactId>
|
||
|
<version>${fuel.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.kittinunf.fuel</groupId>
|
||
|
<artifactId>fuel-rxjava</artifactId>
|
||
|
<version>${fuel.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.kittinunf.fuel</groupId>
|
||
|
<artifactId>fuel-coroutines</artifactId>
|
||
|
<version>${fuel.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>nl.komponents.kovenant</groupId>
|
||
|
<artifactId>kovenant</artifactId>
|
||
|
<version>${kovenant.version}</version>
|
||
|
<type>pom</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>uy.kohesive.injekt</groupId>
|
||
|
<artifactId>injekt-core</artifactId>
|
||
|
<version>${injekt-core.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<commons-math3.version>3.6.1</commons-math3.version>
|
||
|
<junit.platform.version>1.1.1</junit.platform.version>
|
||
|
<junit.vintage.version>5.2.0</junit.vintage.version>
|
||
|
<assertj.version>3.10.0</assertj.version>
|
||
|
<fuel.version>1.15.0</fuel.version>
|
||
|
<kovenant.version>3.3.0</kovenant.version>
|
||
|
<injekt-core.version>1.16.1</injekt-core.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|