diff --git a/jenkinsfile1 b/jenkinsfile1
new file mode 100644
index 0000000000..830babf0c7
--- /dev/null
+++ b/jenkinsfile1
@@ -0,0 +1,32 @@
+node {
+
+ def mavenHome = tool name: "3.8.6"
+
+ stage('1codeclone'){
+ git "https://github.com/jorge1j/maven-web-application"
+ }
+
+ stage('2test$build'){
+ sh "${mavenHome}/bin/mvn clean package"
+ }
+ stage('3codequality'){
+ sh "${mavenHome}/bin/mvn sonar:sonar"
+ }
+ stage('4uploadArtifact'){
+ sh "${mavenHome}/bin/mvn deploy"
+ }
+ /*
+ stage('5deploy2UAT'){
+ sh "sleep 40"
+ deploy adapters: [tomcat9(credentialsId: 'tomcatcredential', path: '', url: 'https://44.210.117.44')], contextPath: null, war: 'target/*war'
+ */
+
+ }
+ stage('Approval'){
+ timeout(time:8, unit: 'HOURS' ) {
+ input message: 'Please verify and approve'
+
+ }
+
+
+ }
diff --git a/pom.xml b/pom.xml
index 536b67a8c1..948ccb9d98 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@