diff --git a/Jenkinsfile b/Jenkinsfile
index e3d8cac35d1822019f7d525ebebf8f2380227379..2a71f3659511017b9b994a8aa4ee5d09bf9ab79a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -87,21 +87,22 @@ pipeline {
             }
         }
 
-        stage ('OWASP Dependency-Check Vulnerabilities') {
-            steps {
-                    dependencyCheck additionalArguments: ''' 
-                        -o "./" 
-                        -s "./"
-                        -f "ALL" 
-                        -d /dependency-check-data
-                        --suppression dependency-check-supressions.xml
-                        --disableKnownExploited
-                        --disableArchive
-                        --prettyPrint''', odcInstallation: 'dependency-check-owasp'
-
-                    dependencyCheckPublisher pattern: 'dependency-check-report.xml'
-            }
-        }
+// TODO aktuell dauert es viel zu lange und wird am Ende einfach abgebrochen
+//         stage ('OWASP Dependency-Check Vulnerabilities') {
+//             steps {
+//                     dependencyCheck additionalArguments: '''
+//                         -o "./"
+//                         -s "./"
+//                         -f "ALL"
+//                         -d /dependency-check-data
+//                         --suppression dependency-check-supressions.xml
+//                         --disableKnownExploited
+//                         --disableArchive
+//                         --prettyPrint''', odcInstallation: 'dependency-check-owasp'
+//
+//                     dependencyCheckPublisher pattern: 'dependency-check-report.xml'
+//             }
+//         }
 
         stage('Deploy to Nexus'){
             steps {
diff --git a/pom.xml b/pom.xml
index dfb3b4a6fd0e16d64e5a957f6542bc195dc0da55..a95acbd8827a0bb3424145301dd138eb6b0c850a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -204,6 +204,7 @@
 
 			<!-- Use JUnit to run test classes -->
 			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-surefire-plugin</artifactId>
 				<version>${maven-surefire-plugin.version}</version>
 			</plugin>