jniPath := {
val subProjectPath = projectDependencies.value map (module => (jniPath in LocalProject(module.name)).value)
val path = libraryDependencies.value flatMap (_.name)
path ++ subProjectPath mkString File.pathSeparator
}
Does anyone have a workaround? It seems that the problem comes from (jniPath in LocalProject(module.name)).value, but I see no way to do this, is this a limitation of SBT?
Greetings
source
share