31 lines
984 B
Scala
31 lines
984 B
Scala
/*
|
|
* Copyright (C) 2018 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
import sbt._
|
|
import sbt.Keys._
|
|
import sbtwhitesource.WhiteSourcePlugin.autoImport._
|
|
import sbtwhitesource._
|
|
import com.typesafe.sbt.SbtGit.GitKeys._
|
|
|
|
object Whitesource extends AutoPlugin {
|
|
override def requires = WhiteSourcePlugin
|
|
|
|
override def trigger = allRequirements
|
|
|
|
override lazy val projectSettings = Seq(
|
|
// do not change the value of whitesourceProduct
|
|
whitesourceProduct := "Lightbend Reactive Platform",
|
|
whitesourceAggregateProjectName := {
|
|
(moduleName in LocalRootProject).value + "-" + (
|
|
if (isSnapshot.value)
|
|
if (gitCurrentBranch.value == "master") "master"
|
|
else "adhoc"
|
|
else CrossVersion.partialVersion((version in LocalRootProject).value)
|
|
.map { case (major,minor) => s"$major.$minor-stable" }
|
|
.getOrElse("adhoc"))
|
|
},
|
|
whitesourceForceCheckAllDependencies := true,
|
|
whitesourceFailOnError := true,
|
|
)
|
|
}
|