mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-08 20:53:17 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
20 lines
393 B
Scala
20 lines
393 B
Scala
import sbt._
|
|
|
|
object Dependencies {
|
|
val moreSettings = Seq(
|
|
scalaVersion := "2.13.0-RC5"
|
|
)
|
|
|
|
val abcVersion = "1.2.3"
|
|
|
|
val ujson = "com.example" %% "foo" % "0.7.1"
|
|
|
|
lazy val abc = "com.abc" % "abc" % abcVersion
|
|
|
|
val relatedDeps = Seq(
|
|
"com.abc" % "abc-a" % abcVersion,
|
|
"com.abc" % "abc-b" % abcVersion
|
|
)
|
|
|
|
val aloneDepInSeq = List("com.abc" % "abc-c" % abcVersion)
|
|
}
|