2019-10-31 21:43:47 -04:00
|
|
|
<?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</artifactId>
|
|
|
|
<name>kotlin-libraries</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-kotlin</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-kotlin</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>exposed</id>
|
|
|
|
<name>exposed</name>
|
|
|
|
<url>https://dl.bintray.com/kotlin/exposed</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>kotlinx</id>
|
|
|
|
<name>bintray</name>
|
|
|
|
<url>https://dl.bintray.com/kotlin/kotlinx</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.spek</groupId>
|
|
|
|
<artifactId>spek-api</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${spek.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.spek</groupId>
|
|
|
|
<artifactId>spek-subject-extension</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${spek.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.spek</groupId>
|
|
|
|
<artifactId>spek-junit-platform-engine</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${spek.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-math3</artifactId>
|
|
|
|
<version>${commons-math3.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-runner</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>khttp</groupId>
|
|
|
|
<artifactId>khttp</artifactId>
|
|
|
|
<version>${khttp.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nhaarman</groupId>
|
|
|
|
<artifactId>mockito-kotlin</artifactId>
|
|
|
|
<version>${mockito-kotlin.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.salomonbrys.kodein</groupId>
|
|
|
|
<artifactId>kodein</artifactId>
|
|
|
|
<version>${kodein.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.beust</groupId>
|
|
|
|
<artifactId>klaxon</artifactId>
|
|
|
|
<version>${klaxon.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.exposed</groupId>
|
|
|
|
<artifactId>exposed</artifactId>
|
|
|
|
<version>${exposed.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<!-- https://mvnrepository.com/artifact/io.arrow-kt/arrow-core -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.arrow-kt</groupId>
|
|
|
|
<artifactId>arrow-core</artifactId>
|
|
|
|
<version>${arrow-core.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>uy.kohesive.kovert</groupId>
|
|
|
|
<artifactId>kovert-vertx</artifactId>
|
|
|
|
<version>[1.5.0,1.6.0)</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>nl.komponents.kovenant</groupId>
|
|
|
|
<artifactId>kovenant</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>nl.komponents.kovenant</groupId>
|
|
|
|
<artifactId>kovenant</artifactId>
|
|
|
|
<version>${kovenant.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/junit/junit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.bytebuddy</groupId>
|
|
|
|
<artifactId>byte-buddy</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.bytebuddy</groupId>
|
|
|
|
<artifactId>byte-buddy-agent</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.objenesis</groupId>
|
|
|
|
<artifactId>objenesis</artifactId>
|
|
|
|
<version>${objenesis.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.reactivex.rxjava2</groupId>
|
|
|
|
<artifactId>rxkotlin</artifactId>
|
|
|
|
<version>${rxkotlin.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<mockito-kotlin.version>1.5.0</mockito-kotlin.version>
|
|
|
|
<kodein.version>4.1.0</kodein.version>
|
|
|
|
<klaxon.version>3.0.4</klaxon.version>
|
|
|
|
<khttp.version>0.1.0</khttp.version>
|
|
|
|
<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>
|
|
|
|
<exposed.version>0.10.4</exposed.version>
|
|
|
|
<kovenant.version>3.3.0</kovenant.version>
|
|
|
|
<byte-buddy.version>1.8.13</byte-buddy.version>
|
|
|
|
<objenesis.version>2.6</objenesis.version>
|
|
|
|
<rxkotlin.version>2.3.0</rxkotlin.version>
|
|
|
|
<arrow-core.version>0.7.3</arrow-core.version>
|
2020-01-15 15:23:26 -05:00
|
|
|
<spek.version>1.1.5</spek.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|