pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                // This runs the Maven test phase
                sh 'mvn test'
            }
        }
    }
}
