Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Commit

Permalink
추가: Jetbrains의 Exposed 라이브러리 추가(JDBC)
Browse files Browse the repository at this point in the history
  • Loading branch information
monun committed Mar 10, 2021
1 parent 9882078 commit 33dd209
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
group=com.github.noonmaru
version=1.0.3
version=1.0.4
4 changes: 4 additions & 0 deletions v1.3.72/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ dependencies {
implementation(kotlin("reflect"))
implementation(kotlinx("kotlinx-serialization-runtime", "0.20.0"))
implementation(kotlinx("kotlinx-coroutines-core", "1.3.8"))
val exposedVersion = "0.24.1"
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
}

fun kotlinx(module: String, version: String): String {
Expand Down
4 changes: 4 additions & 0 deletions v1.4.0/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ dependencies {
implementation(kotlin("reflect"))
implementation(kotlinx("kotlinx-serialization-core", "1.0.0-RC"))
implementation(kotlinx("kotlinx-coroutines-core", "1.3.9"))
val exposedVersion = "0.24.1"
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
}

fun kotlinx(module: String, version: String): String {
Expand Down
4 changes: 4 additions & 0 deletions v1.4.10/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ dependencies {
implementation(kotlin("reflect"))
implementation(kotlinx("kotlinx-serialization-core", "1.0.0-RC"))
implementation(kotlinx("kotlinx-coroutines-core", "1.3.9"))
val exposedVersion = "0.24.1"
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
}

fun kotlinx(module: String, version: String): String {
Expand Down
4 changes: 4 additions & 0 deletions v1.4.20/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ dependencies {
implementation(kotlin("reflect"))
implementation(kotlinx("kotlinx-serialization-json", "1.0.1"))
implementation(kotlinx("kotlinx-coroutines-core", "1.4.1"))
val exposedVersion = "0.28.1"
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
}

fun kotlinx(module: String, version: String): String {
Expand Down
4 changes: 4 additions & 0 deletions v1.4.21/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ dependencies {
implementation(kotlin("reflect"))
implementation(kotlinx("kotlinx-serialization-json", "1.0.1"))
implementation(kotlinx("kotlinx-coroutines-core", "1.4.1"))
val exposedVersion = "0.29.1"
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
}

fun kotlinx(module: String, version: String): String {
Expand Down
4 changes: 4 additions & 0 deletions v1.4.30/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ dependencies {
implementation(kotlin("reflect"))
implementation(kotlinx("kotlinx-serialization-json", "1.1.0-RC"))
implementation(kotlinx("kotlinx-coroutines-core", "1.4.2"))
val exposedVersion = "0.29.1"
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
}

fun kotlinx(module: String, version: String): String {
Expand Down
4 changes: 4 additions & 0 deletions v1.4.31/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ dependencies {
implementation(kotlin("reflect"))
implementation(kotlinx("kotlinx-serialization-json", "1.1.0"))
implementation(kotlinx("kotlinx-coroutines-core", "1.4.2"))
val exposedVersion = "0.29.1"
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
}

fun kotlinx(module: String, version: String): String {
Expand Down

0 comments on commit 33dd209

Please sign in to comment.