pipeline{
    agent any
    stages{
      stage("Test"){
       sh 'mvn test'
      }
     }
}