mirror of https://github.com/sbt/sbt.git
Fixes util-interface depending on Scala
This commit is contained in:
parent
521dc25df5
commit
72f18bda75
|
|
@ -325,6 +325,7 @@ lazy val utilInterface = (project in file("internal") / "util-interface").settin
|
||||||
crossScalaVersions := List(scala212),
|
crossScalaVersions := List(scala212),
|
||||||
javaOnlySettings,
|
javaOnlySettings,
|
||||||
crossPaths := false,
|
crossPaths := false,
|
||||||
|
autoScalaLibrary := false,
|
||||||
name := "Util Interface",
|
name := "Util Interface",
|
||||||
exportJars := true,
|
exportJars := true,
|
||||||
utilMimaSettings,
|
utilMimaSettings,
|
||||||
|
|
@ -1535,8 +1536,7 @@ ThisBuild / pomIncludeRepository := { _ =>
|
||||||
}
|
}
|
||||||
ThisBuild / publishTo := {
|
ThisBuild / publishTo := {
|
||||||
val nexus = "https://oss.sonatype.org/"
|
val nexus = "https://oss.sonatype.org/"
|
||||||
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
|
Some("releases" at nexus + "service/local/staging/deploy/maven2")
|
||||||
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
|
|
||||||
}
|
}
|
||||||
ThisBuild / publishMavenStyle := true
|
ThisBuild / publishMavenStyle := true
|
||||||
ThisBuild / whitesourceProduct := "Lightbend Reactive Platform"
|
ThisBuild / whitesourceProduct := "Lightbend Reactive Platform"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue