Create Jenkinsfile
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..70f6f59
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,24 @@
+pipeline {
+    agent any
+
+    stages {
+        stage('Validate') {
+            steps {
+                echo '-----------------------Fetching Code-----------------------'
+                git 'https://github.com/ravi2krishna/JavaWebCalculator.git'
+                sh 'mvn compile'
+            }
+        }
+        stage('Test') {
+            steps {
+                echo '-----------------------Testing Code-----------------------'
+                sh 'mvn test'
+            }
+        }
+        stage('Deploy') {
+            steps {
+                echo 'Deploying....'
+            }
+        }
+    }
+}