Adding clean step and maven settings for build
diff --git a/Jenkinsfile b/Jenkinsfile
index 492e249..c5c9312 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -38,7 +38,8 @@
     stage ('Build') {
         withMaven(
                 maven: buildMvn,
-                jdk: buildJdk
+                jdk: buildJdk,
+                mavenSettingsConfig: deploySettings
         ) {
             // Run the maven build
             sh "mvn clean install -B -U -e -fae -Dmaven.compiler.fork=false"