Skip to main content

Posts

Showing posts from August, 2024

End To End CI CD Pipeline Project | CI CD Pipeline

----->>>> This is  Start of CI pipeline ------->>>> pipeline {     agent any         tools {             jdk 'jdk 11'             maven 'maven3'         }         environment {             SCANNER_HOME= tool 'sonar-scanner'         }     stages {         stage ('Git checkout') {             steps {                 git branch: 'main', changelog: false, poll: false, url: 'https://github.com/jaiswaladi246/Webshop-app.git'         ...