A BOM for Kotlin platform
Please add following code in your pom.xml:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.linux-china</groupId>
<artifactId>kotlin-platform-bom</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
- assertj-core-kotlin
import org.assertj.core.api.KotlinAssertions.assertThat
import org.junit.Test
class KotlinAssertionsExample {
@Test
fun simpleAssertion() {
assertThat(10L.toString()).isEqualTo("10")
}
}
- katz: Functional Data Types and abstractions for Kotlin https://github.com/FineCinnamon/Katz
- fuel: Kotlin Http Client