Skip to content

Commit

Permalink
Merge pull request #194 from dwijnand/bintray
Browse files Browse the repository at this point in the history
Fix the bintray settings
  • Loading branch information
dwijnand committed Jan 14, 2021
2 parents 8f0432c + 494c01b commit 961a143
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ val dynver = project.settings(
libraryDependencies += "org.eclipse.jgit" % "org.eclipse.jgit" % "5.10.0.202012080955-r" % Test,
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.15.2" % Test,

mimaSettings,
publishSettings,
)

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

publishSettings,
)

lazy val publishSettings = Def.settings(
mimaSettings,
bintrayPackage := "sbt-dynver", // keep publishing to the same place
bintrayRepository := "sbt-plugins",
)

lazy val mimaSettings = Seq(
Expand Down

0 comments on commit 961a143

Please sign in to comment.