Skip to content

Commit

Permalink
chore: updated version, remove openid4vc lib native targets (#11)
Browse files Browse the repository at this point in the history
* chore: updated version, remove openid4vc lib native targets
* fix: leftover
  • Loading branch information
mikeplotean authored Oct 23, 2023
1 parent e55d95c commit 104d0fe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
allprojects {

version = "1.0.0"
version = "1.0.1"

repositories {
mavenCentral()
Expand Down
22 changes: 11 additions & 11 deletions waltid-openid4vc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ kotlin {
}
binaries.library()
}
val hostOs = System.getProperty("os.name")
val isMingwX64 = hostOs.startsWith("Windows")
val nativeTarget = when {
hostOs == "Mac OS X" -> macosX64("native")
hostOs == "Linux" -> linuxX64("native")
isMingwX64 -> mingwX64("native")
else -> throw GradleException("Host OS is not supported in Kotlin/Native.")
}
val ktor_version = "2.3.4"
// val hostOs = System.getProperty("os.name")
// val isMingwX64 = hostOs.startsWith("Windows")
// val nativeTarget = when {
// hostOs == "Mac OS X" -> macosX64("native")
// hostOs == "Linux" -> linuxX64("native")
// isMingwX64 -> mingwX64("native")
// else -> throw GradleException("Host OS is not supported in Kotlin/Native.")
// }
val ktor_version = "2.3.5"


sourceSets {
Expand Down Expand Up @@ -122,8 +122,8 @@ kotlin {
val jsTest by getting {

}
val nativeMain by getting
val nativeTest by getting
// val nativeMain by getting
// val nativeTest by getting
}

publishing {
Expand Down
1 change: 0 additions & 1 deletion waltid-verifier/src/main/kotlin/id/walt/verifier/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package id.walt.verifier
import id.walt.credentials.verification.PolicyManager
import id.walt.did.dids.DidService
import id.walt.did.dids.resolver.LocalResolver
import id.walt.verifier.OidcApi.oidcApi
import id.walt.verifier.base.config.ConfigManager
import id.walt.verifier.base.config.WebConfig
import id.walt.verifier.base.web.plugins.*
Expand Down

0 comments on commit 104d0fe

Please sign in to comment.