Skip to content

Commit

Permalink
Remove unneeded dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Feb 1, 2024
1 parent 7e2ba96 commit 4de9cab
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ nexusPublishing {

allprojects {
group = "io.exoquery"
version = "1.2.0"
version = "2.0.0"
}

subprojects {
Expand Down
1 change: 1 addition & 0 deletions pprint-kotlin-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.dokka.gradle.AbstractDokkaTask
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl

plugins {
kotlin("multiplatform")
Expand Down
2 changes: 1 addition & 1 deletion pprint-kotlin-kmp/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl

plugins {
kotlin("multiplatform")
Expand Down Expand Up @@ -35,7 +36,6 @@ kotlin {
// Used to ad-hoc some examples but not needed.
//api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.6.2")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.5.0")
implementation("app.softwork:kotlinx-uuid-core:0.0.22")
implementation(kotlin("test"))
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import kotlinx.serialization.descriptors.SerialDescriptor
import kotlinx.serialization.descriptors.buildClassSerialDescriptor
import kotlinx.serialization.encoding.Decoder
import kotlinx.serialization.encoding.Encoder
import kotlinx.uuid.UUID
import kotlinx.uuid.toUUID
import kotlin.test.Test
import kotlin.time.DurationUnit

Expand Down Expand Up @@ -132,8 +130,6 @@ class DerivationTests {
pprint(Triple("lol", 1, 'c'), defaultShowFieldNames = false).plainText shouldBe """Triple("lol", 1, 'c')"""

val x = 123
val z = "00000000-0000-0000-ffff-ffffffffffff".toUUID()
Check(z, """UUID("00000000-0000-0000-ffff-ffffffffffff")""")
// Make sure when dealing with composite data structures, we continue
// to use the static versions as deep as we can go before falling back
// to toString
Expand Down

0 comments on commit 4de9cab

Please sign in to comment.