diff --git a/Dockerfile b/Dockerfile
index 74a00407b6..a1da627d8d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,3 @@
-FROM tomcat:8.0.20-jre8
-# Dummy text to test
-COPY target/maven-web-application*.war /usr/local/tomcat/webapps/maven-web-application.war
+FROM tomcat:8.0.20-jre8
+COPY target/*.war /usr/local/tomcat/webapps/maven-web-app.war
+#DEVOPS
diff --git a/jenkinsfile-ebay b/jenkinsfile-ebay
new file mode 100644
index 0000000000..589a04ab46
--- /dev/null
+++ b/jenkinsfile-ebay
@@ -0,0 +1,33 @@
+node {
+ def mavenHome = tool name: 'maven3.8.2'
+stage('1-Clone') {
+ git credentialsId: '9719d5b4-9f6d-49f8-af05-9eeb319161f4', url: 'https://github.com/engineer120/maven-web-app.git'
+ }
+ stage('2-mavenBuild') {
+ sh "${mavenHome}/bin/mvn clean package"
+ }
+ stage('3-CodeQuality') {
+ sh "${mavenHome}/bin/mvn sonar:sonar"
+ }
+ stage('4-UploadArticats') {
+ sh "${mavenHome}/bin/mvn deploy"
+ }
+ stage('5-Deploy-UAT') {
+ // deploy adapters: [tomcat9(credentialsId: 'tomcats-credential', path: '', url: 'http://172.31.30.176:8080/')], contextPath: null, war: 'target/*war'
+
+ }
+ stage('6-EmailNotification') {
+
+ emailext body: '''hello everyone
+build from ebay pipeline was succefull done by engineer120
+''', subject: 'build status', to: 'developers'
+ }
+ stage('Approval'){
+ timeout(time:8, unit: 'HOURS' ) {
+ input message: 'Please verify this project and approve'
+ }
+}
+stage('prod-Deploy'){
+ // deploy adapters: [tomcat9(credentialsId: 'tomcats-credential', path: '', url: 'http://172.31.30.176:8080/')], contextPath: null, war: 'target/*war'
+}
+}
diff --git a/pom.xml b/pom.xml
index 3c18c3bbad..e6f963cbaf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@