Skip to content

Commit

Permalink
refactor: changed from common to jvm folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoe Maas committed Jul 12, 2024
1 parent 2105846 commit 56540cc
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/openid-federation-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ kotlin {
implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.0")
implementation("com.nimbusds:nimbus-jose-jwt:9.40")
}
}
val commonTest by getting {
Expand All @@ -64,6 +63,7 @@ kotlin {
val jvmMain by getting {
dependencies {
implementation("io.ktor:ktor-client-core-jvm:$ktorVersion")
implementation("com.nimbusds:nimbus-jose-jwt:9.40")
}
}
val jvmTest by getting {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.sphereon.oid.fed.jwks
package com.sphereon.oid.fed.jvm.jwks

import com.sphereon.oid.fed.jwks.JWKSGenerator
import com.sphereon.oid.fed.kms.MemoryKeyStore
import org.junit.jupiter.api.Assertions.assertNotNull
import org.junit.jupiter.api.Assertions.assertTrue
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
import kotlin.test.assertEquals


class JWKSGenerationTest {

Expand Down

0 comments on commit 56540cc

Please sign in to comment.