mirror of https://github.com/sbt/sbt.git
49 lines
1.4 KiB
Scala
49 lines
1.4 KiB
Scala
ThisBuild / organization := "org.example"
|
|
ThisBuild / csrCacheDirectory := (ThisBuild / baseDirectory).value / "coursier-cache"
|
|
|
|
lazy val root = (project in file("."))
|
|
.settings(commonSettings)
|
|
|
|
lazy val commonSettings = Seq(
|
|
ivyPaths := IvyPaths(
|
|
(ThisBuild / baseDirectory).value.toString,
|
|
Some(((LocalRootProject / target).value / "ivy-cache").toString)
|
|
),
|
|
publishTo := Some(Resolver.file("test-publish", (ThisBuild / baseDirectory).value / "repo/")),
|
|
// to get sbt artifacts
|
|
resolvers += {
|
|
val ivyHome = Classpaths.bootIvyHome(appConfiguration.value) getOrElse sys.error(
|
|
"Launcher did not provide the Ivy home directory."
|
|
)
|
|
Resolver.file("real-local", ivyHome / "local")(using Resolver.ivyStylePatterns)
|
|
},
|
|
resolvers += Resolver.mavenLocal,
|
|
resolvers += ("test-repo" at ((ThisBuild / baseDirectory).value / "repo/").asURL.toString)
|
|
)
|
|
|
|
lazy val a = (project in file("a"))
|
|
.enablePlugins(SbtPlugin)
|
|
.settings(
|
|
commonSettings,
|
|
name := "demo1",
|
|
version := "0.1"
|
|
)
|
|
|
|
lazy val b = (project in file("b"))
|
|
.enablePlugins(SbtPlugin)
|
|
.settings(
|
|
commonSettings,
|
|
name := "demo2",
|
|
version := "0.2",
|
|
addSbtPlugin("org.example" % "demo1" % "0.1")
|
|
)
|
|
|
|
lazy val c = (project in file("c"))
|
|
.enablePlugins(SbtPlugin)
|
|
.settings(
|
|
commonSettings,
|
|
name := "demo3",
|
|
version := "0.3",
|
|
addSbtPlugin("org.example" % "demo2" % "0.2")
|
|
)
|