Skip to content
Snippets Groups Projects
Commit c05624fa authored by Hallvard Trætteberg's avatar Hallvard Trætteberg
Browse files

Try something else

parent 58b0fe1c
No related branches found
No related tags found
No related merge requests found
......@@ -26,19 +26,17 @@ javafx {
// launch debugger using Remote Java Application debug launch configuration
}
test {
// don't run UI test on server (that cannot run javafx)
if (project.hasProperty('gitlab-ci')) {
exclude 'simpleex.ui/*'
}
sourceSets {
main {
java {
// don't include UI without FxMapControl installed
if (project.hasProperty('gitlab-ci')) {
exclude 'simpleex.ui/*'
}
}
}
}
compile {
// don't compile UI without FxMapControl installed
if (project.hasProperty('gitlab-ci')) {
exclude 'simpleex.ui/*'
}
}
test {
// don't run UI test on server (that cannot run javafx)
if (project.hasProperty('gitlab-ci')) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment