File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments