I am a novice to sbt and I would like to include a custom folder into final package. Based on some good reads, I understand sbt follows a specific folder structure and doesn't include custom folders unless specified in build file.
Following is the project folder structure and would like to include bin and subsequent files into the end package, but this doesn't seem to work for me. Any inputs appreciated
LICENSE README.MD app/ build.sbt conf/ lib/ project/ public/ bin/
Section i tried in the sbt build file
import com.typesafe.sbt.SbtNativePackager.Universal
mappings in Universal += {
file("bin") -> "bin"
}