Skip to content
This repository was archived by the owner on Jul 22, 2021. It is now read-only.

Commit 6ac674f

Browse files
authored
Create .neckbeard
1 parent 174a9f9 commit 6ac674f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.neckbeard

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
pipeline {
2+
agent {
3+
any {
4+
image 'maven:3-alpine'
5+
args '-v /root/.m2:/root/.m2'
6+
}
7+
}
8+
stages {
9+
stage('build') {
10+
steps {
11+
sh 'mvn -B -DskipTests clean package'
12+
}
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)