diff --git a/Jenkinsfile b/Jenkinsfile
index 6dcc0725d960bab927e13f8a258f0a2b36a8b920..b980efebf19df61fce2c0a48109a24259b0df461 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,57 +1,47 @@
 pipeline {
-
     agent any
-
     tools { 
         maven 'maven3' 
     }
-
     options {
         buildDiscarder logRotator( 
-                    daysToKeepStr: '15', 
-                    numToKeepStr: '10'
-            )
+            daysToKeepStr: '15', 
+            numToKeepStr: '10'
+        )
     }
-
     environment {
         APP_NAME = "DCUBE_APP"
         APP_ENV  = "DEV"
     }
-
     stages {
-        
         stage('Cleanup Workspace') {
             steps {
                 cleanWs()
-                sh """
+                bat """
                 echo "Cleaned Up Workspace for ${APP_NAME}"
                 """
             }
         }
-
         stage('Code Checkout') {
             steps {
                 checkout([
                     $class: 'GitSCM', 
                     branches: [[name: '*/main']], 
-                    userRemoteConfigs: [[url: 'https://etulab.univ-amu.fr/k19025322/pipeline-as-code.git']]
+                    userRemoteConfigs: [[url: 'https://github.com/spring-projects/spring-petclinic.git']]
                 ])
             }
         }
-
         stage('Code Build') {
             steps {
-                 sh 'mvn install -Dmaven.test.skip=true'
+                bat 'mvn install -Dmaven.test.skip=true'
             }
         }
-
-        stage('Priting All Global Variables') {
+        stage('Printing All Global Variables') {
             steps {
-                sh """
-                env
+                bat """
+                set
                 """
             }
         }
-
     }   
 }
\ No newline at end of file