Skip to content

Commit 40f8e11

Browse files
authored
Create Jenkinsfile
1 parent b50a3eb commit 40f8e11

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Jenkinsfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pipeline {
2+
agent {
3+
node {
4+
label 'rajmaven'
5+
}
6+
}
7+
environment {
8+
PATH = "/usr/share/maven/bin:$PATH"
9+
}
10+
11+
stages {
12+
stage('build') {
13+
steps {
14+
sh 'mvn clean deploy '
15+
}
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)