diff --git a/Jenkinsfile b/Jenkinsfile
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..028d7631d3c80e5155bf89804f63b1a5d66b275d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -0,0 +1,28 @@
+#!groovy
+
+node {
+
+    try {
+        stage 'Checkout'
+            checkout scm
+
+        stage 'Test'
+            sh """
+            mvn test
+            """
+
+        stage 'Build'
+            
+    }
+
+    catch (err) {
+        
+        throw err
+    }
+    
+    finally {
+        sh """
+        """
+        }
+}
+