Skip to content

Commit 6a47a85

Browse files
authored
Create Jenkinsfile
1 parent 0dc4898 commit 6a47a85

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Jenkinsfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
pipeline {
3+
agent { docker { image 'maven:3.9.5-eclipse-temurin-17-alpine' } }
4+
stages {
5+
stage('build') {
6+
steps {
7+
sh 'mvn --version'
8+
}
9+
}
10+
}
11+
}

0 commit comments

Comments
 (0)