Skip to content
This repository was archived by the owner on Jun 24, 2023. It is now read-only.

Commit 8356cb2

Browse files
init dependencies
1 parent 5624223 commit 8356cb2

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ nbbuild/
2626
dist/
2727
nbdist/
2828
.nb-gradle/
29-

build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
buildscript {
33
ext {
44
kotlinVersion = "1.4.21"
5+
coroutinesVersion = "1.4.2"
6+
r2dbcVersion = "0.8.3.RELEASE"
57
detektVersion = "1.12.0-RC1"
68
}
79
repositories {
@@ -34,6 +36,9 @@ subprojects { project ->
3436
dependencies {
3537
api "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
3638
api "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}"
39+
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:${coroutinesVersion}"
40+
api "org.jetbrains.kotlinx:kotlinx-coroutines-reactive:${coroutinesVersion}"
41+
api "io.r2dbc:r2dbc-spi:${r2dbcVersion}"
3742
testImplementation "junit:junit:4.12"
3843
detektPlugins "io.gitlab.arturbosch.detekt:detekt-formatting:${detektVersion}"
3944
}
@@ -78,7 +83,7 @@ subprojects { project ->
7883

7984
pom {
8085
name = project.name
81-
description = "A lightweight ORM framework for Kotlin based on R2DBC and Coroutines. "
86+
description = "A lightweight ORM framework for Kotlin based on R2DBC and Coroutines."
8287
url = "https://github.com/kotlin-orm/ktorm-r2dbc"
8388
licenses {
8489
license {
@@ -143,4 +148,3 @@ task printClasspath() {
143148
println("Classpath written to build/ktorm-r2dbc.classpath")
144149
}
145150
}
146-

ktorm-r2dbc-core/ktorm-r2dbc-core.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,3 @@ task testJar(type: Jar, dependsOn: testClasses) {
1717
artifacts {
1818
testOutput testJar
1919
}
20-

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ rootProject.name = "ktorm-r2dbc"
55
rootProject.children.each { project ->
66
project.buildFileName = "${project.name}.gradle"
77
}
8-

0 commit comments

Comments
 (0)