SnowyGUI/Jenkinsfile

23 lines
504 B
Groovy

pipeline {
agent any
triggers {
pollSCM('*/10 * * * *')
}
stages {
stage('Build') {
steps {
echo 'Building..'
sh './gradlew publishToMavenLocal --stacktrace'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
dir('remappedJars') {
archiveArtifacts artifacts:'*.jar', fingerprint: false
}
}
}
}
}