Skip to content
Open
Show file tree
Hide file tree
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
25 changes: 25 additions & 0 deletions Jenkinsfile_AjayPipeline
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
pipeline {

agent any
tools{
maven 'm395'
}
stages{

stage(clean){
steps{
dir('Ajay-MBPline'){
sh 'mvn clean'
}
}
}
stage(install){
steps{
dir('Ajay-MBPline'){
sh 'mvn install'
}
}
}

}
}
32 changes: 32 additions & 0 deletions Jenkinsfile_Ajay_mbpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
pipeline {

agent any
stages{

stage(clean){
steps{
dir('adi-forked'){
sh 'mvn clean'
}
}
}
stage(install){
steps{
dir('adi-forked'){
sh 'mvn install'
}
}
post{
always{
archiveArtifacts artifacts: 'target/*.jar', followSymlinks: false
junit 'target/surefire-reports/*.xml'
}
}
}
stage('clean ws'){
steps{
clean Ws()
}
}
}
}
22 changes: 22 additions & 0 deletions Jenkinsfile_mbpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
pipeline {

agent any

stages{

stage(clean){
steps{
dir('Ajay-multipp'){
sh 'mvn clean'
}
}
}
stage(install){
steps{
dir('Ajay-multipp'){
sh 'mvn install'
}
}
}
}
}
1 change: 1 addition & 0 deletions aaa
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hi
Empty file added gitfile
Empty file.
2 changes: 2 additions & 0 deletions x
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
this is webhook
testing
checking