diff --git a/Dockerfile b/Dockerfile
index 14a2807e..ab6905ac 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,2 +1,2 @@
FROM tomcat:8.0.20-jre8
-COPY target/*.war /usr/local/tomcat/webapps/td.war
+COPY target/*.war /usr/local/tomcat/webapps/cohort7.war
diff --git a/README.md b/README.md
index 67aca80a..bc662991 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,4 @@
# web-app
# new commit
-
+# commit
+# Done
diff --git a/cohort9 b/cohort9
new file mode 100644
index 00000000..fcaf91c8
--- /dev/null
+++ b/cohort9
@@ -0,0 +1,51 @@
+ pipeline{
+ agent any
+ tools{
+ maven "maven3.8.5"
+ }
+ stages{
+ stage("1.CodeClone"){
+ steps{
+ git credentialsId: 'Github-Cred', url: 'https://github.com/acadalearning/web-app.git'
+ }
+ }
+ stage("2. build"){
+ steps{
+ sh "echo start of maven build"
+ sh "mvn clean package"
+ }
+ }
+ stage("3. Code Quality"){
+ steps{
+ sh "echo start of code quality"
+ sh "mvn sonar:sonar"
+ }
+ }
+ stage("4. Backup"){
+ steps{
+ sh "echo backup to nexus"
+ sh "mvn deploy"
+ }
+ }
+ stage("5. Deploy to UAT"){
+ steps{
+ sh "echo deploy to UAT Environment"
+ deploy adapters: [tomcat9(credentialsId: 'tomcat-cred2', path: '', url: 'http://172.31.12.185:7000/')], contextPath: null, war: 'target/*.war'
+ }
+ }
+ stage("6. Approval"){
+ steps{
+ sh "echo approval needed"
+ timeout(time:2, unit:'DAYS'){
+ input message:'Approval for Production eni'
+ }
+ }
+}
+ stage("5. Deploy to Prod"){
+ steps{
+ sh "echo deploy to Prod Environment"
+ deploy adapters: [tomcat9(credentialsId: 'tomcat-cred2', path: '', url: 'http://172.31.12.185:7000/')], contextPath: null, war: 'target/*.war'
+ }
+ }
+}
+}
diff --git a/jenkins-cohort8 b/jenkins-cohort8
new file mode 100644
index 00000000..8d77c99f
--- /dev/null
+++ b/jenkins-cohort8
@@ -0,0 +1,34 @@
+//scripted
+node(""){
+def MHD = tool name: "maven3.8.6"
+stage('GitClone'){
+sh "echo this is git clone"
+git credentialsId: 'Github-Cred', url: 'https://github.com/acadalearning/web-app.git'
+}
+stage('Build'){
+sh "echo start of build process"
+sh "${MHD}/bin/mvn package"
+}
+stage('CodeQuality'){
+sh "echo performing SonarQube Test"
+//sh "${MHD}/bin/mvn sonar:sonar"
+}
+stage('BackupArtifacts'){
+sh "echo backup to Nexus"
+sh "${MHD}/bin/mvn deploy"
+}
+stage('DeploytoStaging'){
+sh "echo Deploy to Tomcat server"
+deploy adapters: [tomcat9(credentialsId: 'Tomcat-cred', path: '', url: 'http://54.196.234.205:7000/')], contextPath: null, war: 'target/*war'
+}
+stage('Approval'){
+sh "echo approval for Jenkins-file-app"
+timeout(time:5, UNIT:'DAYS'){
+input message:'Approval for Prod'
+}
+}
+stage('DeploytoProd'){
+sh "echo Deploy to Tomcat server"
+deploy adapters: [tomcat9(credentialsId: 'Tomcat-cred', path: '', url: 'http://54.196.234.205:7000/')], contextPath: null, war: 'target/*war'
+}
+}
diff --git a/pom.xml b/pom.xml
index 3bf21532..bba48085 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@