diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000000000000000000000000000000000000..9f68828414b5c24d339f76984d255219eb84a274
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,48 @@
+pipeline {
+
+    agent any
+    tools {
+        maven 'mvn-default'
+        jdk   'openjdk-8'
+    }
+
+    options {
+        timeout(time: 60, unit: 'MINUTES')
+    }
+
+    stages {
+
+        stage('Cleaning') {
+            steps {
+                sh 'git clean -fdx'
+            }
+        }
+
+        stage('Build') {
+            steps {
+                script {
+                    if ( env.BRANCH_NAME ==~ /^release-[.0-9]+$/ ) {
+                        sh 'mvn verify assembly:single'
+                    }
+                    else {
+                        sh 'mvn verify site'
+                    }
+                }
+            }
+        }
+    }
+
+    post {
+        always {
+            archiveArtifacts artifacts: 'target/*.jar', fingerprint: true
+            script {
+                if ( env.BRANCH_NAME ==~ /^release-[.0-9]+$/ ) {
+                    archiveArtifacts artifacts: 'target/*.zip', fingerprint: true
+                }
+            }
+            checkstyle pattern: 'target/checkstyle-result.xml'
+            junit 'target/surefire-reports/*.xml'
+            jacoco execPattern:'target/**.exec', classPattern: '**/classes', sourcePattern: '**/src/main/java'
+        }
+    }
+}