I follow the sbt-pack link to import the plugin. I did:
add a line
addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.7.5")
toplugins.sbt
under my project root directory.add a line
packAutoSettings
to the very top ofbuild.sbt
file under project root directory
then I run sbt to start the console, it said:
error: not found: value packAutoSettings
Also when I run sbt plugins, I don't see the new sbt-pack
plugin shown on the list.
I also tried to create a file called pack.sbt and add content like:
pack.settings
addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.7.5")
but it doesn't work as well.