mirror of https://github.com/sbt/sbt.git
Merge pull request #6972 from adpi2/dependency-submission-v2
Bump sbt-dependency-submission
This commit is contained in:
commit
992dfd5649
|
|
@ -9,6 +9,4 @@ jobs:
|
|||
runs-on: ubuntu-latest # or windows-latest, or macOS-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: scalacenter/sbt-dependency-graph-action@v1
|
||||
with:
|
||||
scala-versions: 2.12.16
|
||||
- uses: scalacenter/sbt-dependency-submission@v2
|
||||
|
|
|
|||
|
|
@ -622,6 +622,7 @@ lazy val scriptedSbtReduxProj = (project in file("scripted-sbt-redux"))
|
|||
.dependsOn(sbtProj % "compile;test->test", commandProj, utilLogging, utilScripted)
|
||||
.settings(
|
||||
baseSettings,
|
||||
crossScalaVersions := Seq(baseScalaVersion),
|
||||
name := "Scripted sbt Redux",
|
||||
libraryDependencies ++= Seq(launcherInterface % "provided"),
|
||||
mimaSettings,
|
||||
|
|
@ -633,6 +634,7 @@ lazy val scriptedSbtOldProj = (project in file("scripted-sbt-old"))
|
|||
.dependsOn(scriptedSbtReduxProj)
|
||||
.settings(
|
||||
baseSettings,
|
||||
crossScalaVersions := Seq(baseScalaVersion),
|
||||
name := "Scripted sbt",
|
||||
mimaSettings,
|
||||
mimaBinaryIssueFilters ++= Seq(
|
||||
|
|
@ -660,6 +662,7 @@ lazy val dependencyTreeProj = (project in file("dependency-tree"))
|
|||
.settings(
|
||||
sbtPlugin := true,
|
||||
baseSettings,
|
||||
crossScalaVersions := Seq(baseScalaVersion),
|
||||
name := "sbt-dependency-tree",
|
||||
publishMavenStyle := true,
|
||||
// mimaSettings,
|
||||
|
|
|
|||
Loading…
Reference in New Issue