Move modules under modules/

This commit is contained in:
Alexandre Archambault 2018-09-28 18:36:32 +02:00
parent 0d161be94d
commit 4855caa0f5
213 changed files with 5 additions and 3 deletions

View File

@ -6,6 +6,7 @@ import Publish._
val coursierVersion = "1.1.0-M7"
lazy val `sbt-shared` = project
.in(file("modules/sbt-shared"))
.settings(
plugin,
libraryDependencies ++= Seq(
@ -28,6 +29,7 @@ lazy val `sbt-shared` = project
)
lazy val `sbt-coursier` = project
.in(file("modules/sbt-coursier"))
.dependsOn(`sbt-shared`)
.settings(
plugin,
@ -48,6 +50,7 @@ lazy val `sbt-coursier` = project
)
lazy val `sbt-pgp-coursier` = project
.in(file("modules/sbt-pgp-coursier"))
.dependsOn(`sbt-coursier`)
.settings(
plugin,
@ -60,6 +63,7 @@ lazy val `sbt-pgp-coursier` = project
)
lazy val `sbt-shading` = project
.in(file("modules/sbt-shading"))
.enablePlugins(ShadingPlugin)
.dependsOn(`sbt-coursier`)
.settings(
@ -76,7 +80,7 @@ lazy val `sbt-shading` = project
)
lazy val coursier = project
.in(root)
.in(file("."))
.aggregate(
`sbt-shared`,
`sbt-coursier`,

Some files were not shown because too many files have changed in this diff Show More