I\'m building a few Java-only projects using simple-build-tool. When I publish the artifacts from the projects using, say, sbt publish-local then the resulting artifacts ha
While the accepted answer is strictly correct, you should never set crossVersions
to false
on publicly published Scala artifacts. The embedded scala version is an important compatibility feature, since different versions of the Scala libraries may not be binary compatible.
Only set crossVersions
to false
for projects, like those in the question, that are strictly Java only.