Skip to content

Commit

Permalink
Make mediator a JVM project only
Browse files Browse the repository at this point in the history
Signed-off-by: FabioPinheiro <fabiomgpinheiro@gmail.com>
  • Loading branch information
FabioPinheiro committed Apr 30, 2024
1 parent 6212196 commit 2ea69f4
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -201,15 +201,13 @@ lazy val httpUtils = crossProject(JSPlatform, JVMPlatform) // project
libraryDependencies += D.ziohttp.value,
)

lazy val mediator = crossProject(JSPlatform, JVMPlatform)
lazy val mediator = project
.in(file("did-mediator"))
.settings(publish / skip := true)
.settings(
libraryDependencies += D.scalaDID_imp.value,
libraryDependencies += D.scalaDID_peer.value,
)
.jvmSettings(
libraryDependencies += D.ziohttp.value,
)
// .jvmConfigure(e => e.dependsOn(httpUtils))
.dependsOn(httpUtils) // did, didExample,
.dependsOn(httpUtils.jvm) // did, didExample,

0 comments on commit 2ea69f4

Please sign in to comment.