All checks were successful
studiorailgun/highlevel-netcode-gen/pipeline/head This commit looks good
15 lines
278 B
Groovy
15 lines
278 B
Groovy
pipeline {
|
|
agent any
|
|
tools {
|
|
maven '3.9.6'
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'mvn --version'
|
|
sh 'java -version'
|
|
sh 'mvn -B -DskipTests clean package'
|
|
}
|
|
}
|
|
}
|
|
} |