Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: updated version, remove openid4vc lib native targets #11

Merged
merged 2 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading