Skip to content

Commit dc63fd8

Browse files
authored
Create Jenkinsfile
1 parent 01a4701 commit dc63fd8

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Jenkinsfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
pipeline {
2+
agent { docker { image 'maven:3.3.3' } }
3+
stages {
4+
stage('build') {
5+
steps {
6+
sh 'mvn --version'
7+
}
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)