Skip to content

Commit 3ebe080

Browse files
committed
Redefine "bootzooka-ui-tests" subproject in order to give it a correct ID
1 parent 413afe1 commit 3ebe080

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

build.sbt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,12 @@ lazy val dist = (project in file("bootzooka-dist")).
157157
}
158158
) dependsOn(ui, backend)
159159

160-
lazy val uiTests = (project in file("boorzooka-ui-tests")).
161-
settings(commonSettings: _*).
162-
settings(
163-
libraryDependencies ++= seleniumStack ++ Seq(awaitility, jettyTest, servletApiProvided),
164-
test in Test <<= (test in Test) dependsOn (Keys.`package` in Compile in backend)) dependsOn dist
160+
lazy val uiTests = Project(
161+
"bootzooka-ui-tests",
162+
file("bootzooka-ui-tests"),
163+
settings = commonSettings ++ Seq(
164+
libraryDependencies ++= seleniumStack ++ Seq(awaitility, jettyTest, servletApiProvided)
165+
) ++ Seq(
166+
test in Test <<= (test in Test) dependsOn (Keys.`package` in Compile in backend)
167+
)
168+
) dependsOn dist

0 commit comments

Comments
 (0)