Skip to content

Commit

Permalink
Added new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nitheshrayuduv committed Aug 17, 2023
1 parent 2272e9a commit 7bf6b90
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 121 deletions.
27 changes: 21 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
buildPlugin(
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
configurations: [
[platform: 'linux', jdk: 11],
[platform: 'windows', jdk: 11],
])
pipeline {
agent any

stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}
115 changes: 0 additions & 115 deletions pom.xml

This file was deleted.

0 comments on commit 7bf6b90

Please sign in to comment.