You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lazy val core = (project in file("modules/core"))
.settings(
name := "Reference Expansion Prototype",
)
lazy val sphere = (project in file("modules/sphere"))
.dependsOn(core)
.settings(
libraryDependencies += sphereJson
)
lazy val root = (project in file("."))
.aggregate(core, sphere)
.dependsOn(core, sphere)
.settings(
name := "Reference Expansion Prototype"
)
.enablePlugins(JavaAppPackaging)
When I use stage, inside target/universal/stage/lib/, I can find the jar file for the root project, the jar file for the sphere project. But I cannot find any jar file for the core project.
This is very strange. I cannot find why.
A clean does not help.
Information
sbt-native-packager 1.9.11
sbt version 1.8.0
build system: MacOS
package: JavaAppPackaging
target system: jar
The text was updated successfully, but these errors were encountered:
Expected behaviour
Given the build.sbt:
When I use
stage
, insidetarget/universal/stage/lib/
, I can find the jar file for theroot
project, the jar file for thesphere
project. But I cannot find any jar file for thecore
project.This is very strange. I cannot find why.
A
clean
does not help.Information
The text was updated successfully, but these errors were encountered: