Skip to content

Commit 961a143

Browse files
authored
Merge pull request #194 from dwijnand/bintray
Fix the bintray settings
2 parents 8f0432c + 494c01b commit 961a143

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.sbt

+7-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ val dynver = project.settings(
3333
libraryDependencies += "org.eclipse.jgit" % "org.eclipse.jgit" % "5.10.0.202012080955-r" % Test,
3434
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.15.2" % Test,
3535

36-
mimaSettings,
36+
publishSettings,
3737
)
3838

3939
import com.typesafe.tools.mima.core._, ProblemFilters._
@@ -44,7 +44,13 @@ val sbtdynver = project.dependsOn(dynverP).enablePlugins(SbtPlugin).settings(
4444
scriptedBufferLog := true,
4545
scriptedDependencies := Seq(dynver / publishLocal, publishLocal).dependOn.value,
4646

47+
publishSettings,
48+
)
49+
50+
lazy val publishSettings = Def.settings(
4751
mimaSettings,
52+
bintrayPackage := "sbt-dynver", // keep publishing to the same place
53+
bintrayRepository := "sbt-plugins",
4854
)
4955

5056
lazy val mimaSettings = Seq(

0 commit comments

Comments
 (0)