1
0
This commit is contained in:
2021-12-11 16:44:11 +01:00
parent 118b56e5f3
commit 73235b3e44
19 changed files with 57 additions and 54 deletions
-4
View File
@@ -2,10 +2,6 @@ plugins {
`kotlin-dsl`
}
kotlinDslPluginOptions {
experimentalWarning.set(false)
}
repositories {
gradlePluginPortal()
maven { setUrl("https://kotlin.bintray.com/kotlinx") }
+21
View File
@@ -0,0 +1,21 @@
plugins {
id("kotlin-convention")
kotlin("kapt")
id("application")
}
dependencies {
implementation(project(":utils"))
kapt(Libs.Micronaut.processor)
implementation(Libs.Slf4J.api)
runtimeOnly(Libs.Slf4J.simple)
implementation(Libs.eclipseCollections)
testImplementation(Libs.Jmh.core)
testImplementation(Libs.Slf4J.simple)
kaptTest(Libs.Jmh.processor)
kaptTest(Libs.Slf4J.simple)
}
@@ -5,7 +5,6 @@ plugins {
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://dl.bintray.com/arrow-kt/arrow-kt/") }
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
}