We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba820e commit 5aaa8b6Copy full SHA for 5aaa8b6
Jenkinsfile
@@ -14,32 +14,19 @@ pipeline {
14
parallel {
15
stage('Server1') {
16
agent { label 'server1' }
17
- tools { git 'LinuxGit' }
18
steps {
19
- sh 'mvn package -DskipTests'
20
- }
21
-
22
- post {
23
- success {
24
- archiveArtifacts 'target/*.jar'
25
- echo 'Package created successfully!'
26
+ sh 'mvn package -DskipTests'
27
}
+
28
29
stage('Server2') {
30
agent { label 'server2' }
31
32
33
34
35
36
37
38
39
40
41
42
+ }
43
44
45
0 commit comments