Bumps version and removes Jenkinsfile
Bumps version to 0.11.5.0-SNAPSHOT for consistency
This commit is contained in:
33
Jenkinsfile
vendored
33
Jenkinsfile
vendored
@@ -1,33 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent any
|
|
||||||
tools {
|
|
||||||
jdk 'JDK17'
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage('Build') {
|
|
||||||
steps {
|
|
||||||
echo 'Building...'
|
|
||||||
sh 'mvn clean & mvn validate & mvn compile'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Test') {
|
|
||||||
steps {
|
|
||||||
echo 'Testing...'
|
|
||||||
sh 'mvn test'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Verify') {
|
|
||||||
steps {
|
|
||||||
echo 'Verifying...'
|
|
||||||
sh 'mvn verify -Dmaven.test.skip=true'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Deploy') {
|
|
||||||
steps {
|
|
||||||
echo 'Deploying...'
|
|
||||||
sh 'mvn deploy -Dmaven.install.skip=true -Dmaven.test.skip=true'
|
|
||||||
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue
Block a user