We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b5536e commit 8a02b55Copy full SHA for 8a02b55
build.sbt
@@ -43,6 +43,13 @@ val buildSettings = Seq[Setting[_]](
43
releaseStepCommand("sonatypeReleaseAll"),
44
pushChanges
45
),
46
+ // Add sonatype repository settings
47
+ publishTo := Some(
48
+ if (isSnapshot.value)
49
+ Opts.resolver.sonatypeSnapshots
50
+ else
51
+ Opts.resolver.sonatypeStaging
52
+ ),
53
// Find bugs
54
findbugsReportType := Some(FindbugsReport.FancyHtml),
55
findbugsReportPath := Some(crossTarget.value / "findbugs" / "report.html"),
0 commit comments