rimajon-ktor/Jenkinsfile

21 lines
365 B
Plaintext
Raw Normal View History

2024-05-06 18:44:21 +00:00
pipeline {
agent {
docker {
image "gradle:7.6.4-jdk11"
}
}
stages {
stage('Build FAT JAR') {
steps {
sh 'gradle shadowJar'
}
}
stage("Deploy jar") {
steps {
sh "echo ':D (need to spin up container)'"
}
}
}
}