Commit for archival reasons.

This commit is contained in:
2022-05-16 01:33:14 -05:00
parent 2866df727f
commit 56e0c8f22a
13 changed files with 280 additions and 30 deletions

10
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('tests') {
steps {
sh 'mvn -B test'
}
}
}
}