jenkinsfile
All checks were successful
studiorailgun/highlevel-netcode-gen/pipeline/head This commit looks good

This commit is contained in:
unknown 2024-02-26 11:54:28 -05:00
parent 155978662d
commit 2851c9b6a5

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent any
tools {
maven '3.9.6'
}
stages {
stage('Build') {
steps {
sh 'mvn --version'
sh 'java -version'
sh 'mvn -B -DskipTests clean package'
}
}
}
}