Skip to content

Commit

Permalink
chore: packages rename
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderPostma committed Jun 21, 2024
1 parent ee9ba4a commit 8268263
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 126 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-java@v2
with:
distribution: adopt-hotspot
java-version: 11
java-version: 17

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,9 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(project(":modules:url-encoder"))
implementation("io.ktor:ktor-client-core:2.3.11")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0-RC")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.0-RC")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.0")
}
}
val commonTest by getting {
Expand Down Expand Up @@ -127,7 +126,7 @@ tasks.register("printSdkLocation") {
}

android {
namespace = "com.sphereon.kmp.genesis.shared"
namespace = "com.sphereon.oid.fed.common"
compileSdk = libs.versions.android.compileSdk.get().toInt()
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.sphereon.utils.mime
package com.sphereon.oid.fed.common.mime

import kotlinx.serialization.KSerializer
import kotlinx.serialization.encodeToString
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.sphereon.utils.mime
package com.sphereon.oid.fed.common.mime

import io.ktor.http.*
import kotlinx.serialization.json.JsonElement
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.sphereon.utils.mime
package com.sphereon.oid.fed.common.mime

import kotlinx.serialization.Serializable
import kotlinx.serialization.json.Json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package com.sphereon.utils.mime
package com.sphereon.oid.fed.common.mime

import com.sphereon.oid.fed.common.mime.appendUrlEncodedValue
import com.sphereon.oid.fed.common.mime.fromUrlEncodedJsonValuesToJsonElements
import com.sphereon.oid.fed.common.mime.fromUrlEncodedValues
import com.sphereon.oid.fed.common.mime.getUrlEncodedJsonValueToJsonElement
import com.sphereon.oid.fed.common.mime.getUrlEncodedValue
import io.ktor.http.*
import kotlinx.serialization.json.Json
import kotlinx.serialization.json.JsonElement
Expand Down
115 changes: 0 additions & 115 deletions modules/url-encoder/build.gradle.kts

This file was deleted.

3 changes: 1 addition & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,4 @@ dependencyResolutionManagement {
}
}

include(":modules:url-encoder")
include(":modules:url-encoder-ktor-http")
include(":modules:openid-federation-common")

0 comments on commit 8268263

Please sign in to comment.