Skip to content

Commit

Permalink
build: make dependencies accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
ssimiao committed Dec 10, 2024
1 parent de361f7 commit 8d12b55
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.abacatepay'
version = '1.0.3'
version = '1.0.4'

repositories {
mavenCentral()
Expand All @@ -18,7 +18,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.abacatepay'
artifactId = 'core'
version = '1.0.3'
version = '1.0.4'

from components.java
}
Expand All @@ -36,10 +36,10 @@ publishing {
}

dependencies {
implementation("io.ktor:ktor-client-core-jvm:3.0.0")
implementation("io.ktor:ktor-client-cio-jvm:3.0.0")
implementation("io.ktor:ktor-serialization-kotlinx-json-jvm:3.0.0")
implementation("io.ktor:ktor-client-content-negotiation-jvm:3.0.0")
api("io.ktor:ktor-client-core-jvm:3.0.0")
api("io.ktor:ktor-client-cio-jvm:3.0.0")
api("io.ktor:ktor-serialization-kotlinx-json-jvm:3.0.0")
api("io.ktor:ktor-client-content-negotiation-jvm:3.0.0")
testImplementation 'org.jetbrains.kotlin:kotlin-test'
testImplementation("io.ktor:ktor-client-mock:3.0.0")
}
Expand Down

0 comments on commit 8d12b55

Please sign in to comment.