Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
node {
stage('SCM CheckOut') {
git 'https://github.com/UganderD/TestJavaApp.git'

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation is not quite right, please fix it


}
stage('Compile-Package'){
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can have a better naming convention for stage

//Get maven home path
def mvnHOME = tool name: 'M2_HOME', type: 'maven'

sh "${mvnHOME}/bin/mvn package"
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, try to add more CI steps like:-

  • Code Quality
  • Code Coverage
  • Unit Testing

stage('Deploy-Tomcat'){
sshagent(['tomcat-job1']) {
sh 'scp -o StrictHostKeyChecking=no target/*.war ec2-user@3.1.205.76:/opt/apache-tomcat-9.0.16/webapps/'
}
}
}