Files
mcMMO/Jenkinsfile
2025-12-13 16:21:34 -08:00

36 lines
545 B
Groovy

pipeline {
agent any
tools {
jdk 'jdk17'
}
options {
timestamps()
disableConcurrentBuilds()
}
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
sh '''
mvn -V -B clean package
'''
}
}
}
post {
success {
archiveArtifacts artifacts: 'target/mcMMO.jar', fingerprint: true
}
}
}