mirror of https://github.com/sbt/sbt.git
Move modules under modules/
This commit is contained in:
parent
0d161be94d
commit
4855caa0f5
|
|
@ -6,6 +6,7 @@ import Publish._
|
||||||
val coursierVersion = "1.1.0-M7"
|
val coursierVersion = "1.1.0-M7"
|
||||||
|
|
||||||
lazy val `sbt-shared` = project
|
lazy val `sbt-shared` = project
|
||||||
|
.in(file("modules/sbt-shared"))
|
||||||
.settings(
|
.settings(
|
||||||
plugin,
|
plugin,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
|
|
@ -28,6 +29,7 @@ lazy val `sbt-shared` = project
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val `sbt-coursier` = project
|
lazy val `sbt-coursier` = project
|
||||||
|
.in(file("modules/sbt-coursier"))
|
||||||
.dependsOn(`sbt-shared`)
|
.dependsOn(`sbt-shared`)
|
||||||
.settings(
|
.settings(
|
||||||
plugin,
|
plugin,
|
||||||
|
|
@ -48,6 +50,7 @@ lazy val `sbt-coursier` = project
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val `sbt-pgp-coursier` = project
|
lazy val `sbt-pgp-coursier` = project
|
||||||
|
.in(file("modules/sbt-pgp-coursier"))
|
||||||
.dependsOn(`sbt-coursier`)
|
.dependsOn(`sbt-coursier`)
|
||||||
.settings(
|
.settings(
|
||||||
plugin,
|
plugin,
|
||||||
|
|
@ -60,6 +63,7 @@ lazy val `sbt-pgp-coursier` = project
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val `sbt-shading` = project
|
lazy val `sbt-shading` = project
|
||||||
|
.in(file("modules/sbt-shading"))
|
||||||
.enablePlugins(ShadingPlugin)
|
.enablePlugins(ShadingPlugin)
|
||||||
.dependsOn(`sbt-coursier`)
|
.dependsOn(`sbt-coursier`)
|
||||||
.settings(
|
.settings(
|
||||||
|
|
@ -76,7 +80,7 @@ lazy val `sbt-shading` = project
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val coursier = project
|
lazy val coursier = project
|
||||||
.in(root)
|
.in(file("."))
|
||||||
.aggregate(
|
.aggregate(
|
||||||
`sbt-shared`,
|
`sbt-shared`,
|
||||||
`sbt-coursier`,
|
`sbt-coursier`,
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue