From f87730fb1bd2dbc24aeb7482485c78df59db33c0 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Thu, 9 May 2019 09:10:47 -0400 Subject: [PATCH] fix test for custom --- src/sbt-test/projectMatrix/custom/build.sbt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/sbt-test/projectMatrix/custom/build.sbt b/src/sbt-test/projectMatrix/custom/build.sbt index ac0310c4a..c90b71841 100644 --- a/src/sbt-test/projectMatrix/custom/build.sbt +++ b/src/sbt-test/projectMatrix/custom/build.sbt @@ -9,24 +9,23 @@ ThisBuild / ivyPaths := { publish / skip := true lazy val core = (projectMatrix in file("core")) - .scalaVersions("2.12.6", "2.11.12") .settings( name := "core", ivyPaths := (ThisBuild / ivyPaths).value ) .custom( - idSuffix = "config1_2_", + idSuffix = "Config1_2", directorySuffix = "-config1.2", - scalaVersions = Nil, + scalaVersions = Seq("2.12.8", "2.11.12"), _.settings( moduleName := name.value + "_config1.2", libraryDependencies += "com.typesafe" % "config" % "1.2.1" ) ) .custom( - idSuffix = "config1_3_", + idSuffix = "Config1_3", directorySuffix = "-config1.3", - scalaVersions = Nil, + scalaVersions = Seq("2.12.8", "2.11.12"), _.settings( moduleName := name.value + "_config1.3", libraryDependencies += "com.typesafe" % "config" % "1.3.3"