23 lines
504 B
Plaintext
23 lines
504 B
Plaintext
|
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
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|