scala - sbt: cross-publish from build.sbt -
currently, i'm using sbt scripted plugin testing. publish plugin local repository, following code snippet in build.sbt used:
crossscalaversions := seq(scalaversion.value,"2.11.7") scripteddependencies := { val local = publishlocal.value }
this way artefact gets published local repository, version scalaversion.value
. have cross-published both scala versions. how can that?
Comments
Post a Comment