mirror of
https://github.com/TotalFreedomMC/TotalFreedomMod.git
synced 2025-06-26 17:20:08 +00:00
12 lines
244 B
Groovy
12 lines
244 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
mvn -B package --file pom.xml
|
|
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
}
|