fluid-sim/Jenkinsfile
unknown 0794c88990
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
Jenkinsfile update
2024-02-29 21:13:36 -05:00

15 lines
282 B
Groovy

pipeline {
agent any
tools {
maven '3.9.6'
}
stages {
stage('Build') {
steps {
sh 'mvn --version'
sh 'java -version'
sh 'mvn clean generate-resources package'
}
}
}
}