scala - Why is the message "The global sbt directory is now versioned" in 0.13? -
i'm pretty new scala , sbt , message below every time run sbt
. message pretty makes sense can't figure out fix it.
i think i'd move configuration place it's expected not sure if mess things up. cannot find doc on how change sbt.global.base
system property.
the global sbt directory versioned , located @ /users/justinhj/.sbt/0.13. seeing warning because there global configuration in /users/justinhj/.sbt not in /users/justinhj/.sbt/0.13. global sbt directory may changed via sbt.global.base system property.
you should move in /users/justinhj/.sbt
new folder /users/justinhj/.sbt/0.13
(mind 0.13
subdirectory). new sbt 0.13 folder naming scheme.
if don't want change global config folder can invoke sbt
modified global base parameter sbt.global.base
follows:
sbt -dsbt.global.base=/users/justinhj/.sbt
take @ document more explanations: http://www.scala-sbt.org/release/docs/command-line-reference.html
Comments
Post a Comment