Skip to content

Commit 02275e8

Browse files
committed
chore: fix crypto packags
1 parent 58e6095 commit 02275e8

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

backend/agent/jfr/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
dev.suresh.plugin.kotlin.jvm
66
application
77
com.gradleup.shadow
8+
dev.suresh.plugin.publishing
89
}
910

1011
description = "JVM JFR Agent!"

backend/data/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ kotlin.sourceSets {
1313
implementation(libs.pty4j)
1414
// implementation(libs.graal.polyglot)
1515
// implementation(libs.graal.wasm)
16+
// implementation(fileTree("lib") { include("*.jar") })
1617
}
1718

1819
kotlin.srcDir("src/main/kotlin")

web/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ dependencies {
2121
wasmJsMainImplementation(libs.kotlin.cryptography.webcrypto)
2222

2323
sharedJsRes(
24-
project(path = projects.shared.dependencyProject.path, configuration = "sharedJsResources"))
24+
project(path = projects.shared.identityPath.path, configuration = "sharedJsResources"))
2525
sharedWasmRes(
26-
project(path = projects.shared.dependencyProject.path, configuration = "sharedWasmResources"))
26+
project(path = projects.shared.identityPath.path, configuration = "sharedWasmResources"))
2727
}
2828

2929
tasks {

web/src/wasmJsMain/kotlin/App.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import dev.suresh.readAsByteArray
33
import dev.suresh.readAsText
44
import dev.suresh.selectFileFromDisk
55
import dev.whyoleg.cryptography.CryptographyProvider
6-
import dev.whyoleg.cryptography.algorithms.digest.SHA512
6+
import dev.whyoleg.cryptography.algorithms.SHA512
77
import io.github.oshai.kotlinlogging.KotlinLogging
88
import kotlin.random.Random
99
import kotlin.time.Duration.Companion.milliseconds

0 commit comments

Comments
 (0)