From 00f89c263dbeacc00521902d58b3c8f5cd73aeda Mon Sep 17 00:00:00 2001
From: Michael Breu <Michael.Breu@arctis.at>
Date: Wed, 9 Aug 2023 10:45:06 +0200
Subject: [PATCH] Trivial change to provoke deployment

---
 Jenkinsfile | 67 -----------------------------------------------------
 1 file changed, 67 deletions(-)
 delete mode 100644 Jenkinsfile

diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index 5e442a2f0..000000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,67 +0,0 @@
-pipeline {
-  agent any
-  environment { 
-        scannerHome = tool 'SonarQube Scanner'
-    }
-   options {
-       buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
-   }
-   tools {
-        // Install the Maven version configured as "M3" and add it to the path.
-        maven "/usr/share/maven"
-        jdk "java-11"
-        nodejs "Node15.11"
-    }
-   stages {
-    stage('Compile and Maven Test') {
-      steps {
-        milestone 1
-                withSonarQubeEnv('SonarQube Production') {
-                    sh "mvn -Dmaven.test.failure.ignore=true  clean verify"
-                }
-      }
-    }
-    stage('Evaluate node tests') {
-      steps {
-        milestone 2
-              junit(testResults: 'target/test-results/test/**/*.xml,target/test-results/integrationTest/**/*.xml', healthScaleFactor: 100)
-              jacoco(execPattern: 'target/jacoco/test/test.exec,target/jacoco/integrationTest/integrationTest.exec',  sourcePattern: 'src/main/java', sourceInclusionPattern: '**/*.java')
-              sh "npm test"
-              sh "mvn jacoco:report"
-      }
-    }
-    stage('SonarAnalysis') {
-      steps {
-        milestone 3
-            
-             withSonarQubeEnv('SonarQube Production') { 
-                 sh "${scannerHome}/bin/sonar-scanner -Dsonar.projectKey=GITSEARCH$BRANCH_NAME \"-Dsonar.projectName=Sharing Plattform $BRANCH_NAME\""
-             }                
-           }
-       }
-   }
-
-  post {
-        failure {
-           notifyByEmail("Failure");
-        }
-        unstable  {
-           notifyByEmail("Unstable");
-        }
-        fixed {
-           notifyByEmail("Fixed");
-        }
-    }
-    
-}
-
-    void notifyByEmail(String reason) {
-        def mailRecipients = "michael.breu@uibk.ac.at"
-      emailext (
-          subject: reason + ": Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
-          body: '''${SCRIPT, template="groovy-html.template"}''',
-          mimeType: 'text/html',
-          recipientProviders: [[$class: 'CulpritsRecipientProvider']]
-        )
-    
-    }   
-- 
GitLab