Merge pull request #6427 from eed3si9n/wip/util-interface

Fixes util-interface depending on Scala
This commit is contained in:
eugene yokota 2021-04-03 19:45:10 -04:00 committed by GitHub
commit 113e427e6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -325,6 +325,7 @@ lazy val utilInterface = (project in file("internal") / "util-interface").settin
crossScalaVersions := List(scala212),
javaOnlySettings,
crossPaths := false,
autoScalaLibrary := false,
name := "Util Interface",
exportJars := true,
utilMimaSettings,
@ -1535,8 +1536,7 @@ ThisBuild / pomIncludeRepository := { _ =>
}
ThisBuild / publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
ThisBuild / publishMavenStyle := true
ThisBuild / whitesourceProduct := "Lightbend Reactive Platform"