From 3f2b0cd5fa3fa61a2b023324a28a47e9a424edf3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lukas=20K=C3=B6hler?= <lukas.koehler@h-da.de>
Date: Thu, 24 Oct 2019 20:16:17 +0200
Subject: [PATCH] fixed gitlab pipeline and build.gradle

---
 .gitlab-ci.yml | 8 ++++----
 build.gradle   | 2 --
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 262bd96..3dea0d8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,7 +17,7 @@ build:
 checkstyle_main:
   stage: check
   script:
-    - ./gradlew check checkstyleMain
+    - ./gradlew check checkstyleMain -x test
     - cp build/reports/checkstyle/main.html ./checkstyleMain.html
   artifacts:
     paths:
@@ -27,7 +27,7 @@ checkstyle_main:
 checkstyle_test:
   stage: check
   script:
-    - ./gradlew check checkstyleTest
+    - ./gradlew check checkstyleTest -x test
     - cp build/reports/checkstyle/test.html ./checkstyleTest.html
   artifacts:
     paths:
@@ -37,7 +37,7 @@ checkstyle_test:
 spotbugs_main:
   stage: check
   script:
-    - ./gradlew check spotbugsMain 
+    - ./gradlew check spotbugsMain -x test
     - cp build/reports/spotbugs/main.html ./spotbugsMain.html
   artifacts:
     paths:
@@ -47,7 +47,7 @@ spotbugs_main:
 spotbugs_test:
   stage: check
   script:
-    - ./gradlew check spotbugsTest
+    - ./gradlew check spotbugsTest -x test
     - cp build/reports/spotbugs/test.html ./spotbugsTest.html
   artifacts:
     paths:
diff --git a/build.gradle b/build.gradle
index cf739b6..016b151 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,5 +1,3 @@
-import javafx.concurrent.Task
-
 /*
  * This file was generated by the Gradle 'init' task.
  *
-- 
GitLab