1
0

Initial commit

This commit is contained in:
2020-12-01 02:12:55 +01:00
commit de750de96a
20 changed files with 516 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
@file:Suppress("SpellCheckingInspection")
object Libs {
object Arrow {
const val version = "0.11.0"
const val core = "io.arrow-kt:arrow-core:$version"
const val optics = "io.arrow-kt:arrow-optics:$version"
const val fx = "io.arrow-kt:arrow-fx:$version"
}
object EclipseCollection {
const val api = "org.eclipse.collections:eclipse-collections-api:10.4.0"
const val core = "org.eclipse.collections:eclipse-collections:10.4.0"
}
object Jmh {
const val core = "org.openjdk.jmh:jmh-core:1.26"
const val processor = "org.openjdk.jmh:jmh-generator-annprocess:1.26"
}
object Tests {
const val assertJ = "org.assertj:assertj-core:3.18.1"
const val junit = "org.junit.jupiter:junit-jupiter:5.7.0"
}
}