When I publish SNAPSHOT artifacts locally to .m2 or remote maven repository, SBT publishes them as <artifact-name>-<version>-SNAPSHOT. Then maven cannot find them, because it expects a timestamp instead of a SNAPSHOT. They should be published as <artifact-name>-<version>-<timestamp>.
SBT 0.13.5.
Any workaround to get the original "maven-like" behavior?
I do have publishMavenStyle := true.