Fixes dependency-management/pom-scope

This commit is contained in:
Eugene Yokota 2017-07-16 17:05:46 -04:00
parent 1903f8c8b9
commit 5432756547
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
lazy val custom = config("custom") //Configurations.config("custom")
lazy val Custom = config("custom")
lazy val root = (project in file(".")).
configs(custom).
configs(Custom).
settings(
TaskKey[Unit]("checkPom") := checkPom.value,
libraryDependencies ++= Seq(
@ -9,7 +9,7 @@ lazy val root = (project in file(".")).
"b" % "b" % "1.0" % "runtime,optional",
"c" % "c" % "1.0" % "optional",
"d" % "d" % "1.0" % "test",
"e" % "e" % "1.0" % "custom",
"e" % "e" % "1.0" % Custom,
"f" % "f" % "1.0" % "custom,optional,runtime",
"g" % "g" % "1.0" % "custom,runtime" classifier "foo",
"h" % "h" % "1.0" % "custom,optional,runtime" classifier "foo"