Fixed many warnings

This commit is contained in:
Ziver Koc 2018-05-27 01:23:21 +02:00
parent c570847f3a
commit ccecc067b2
160 changed files with 951 additions and 1151 deletions

4
Jenkinsfile vendored
View file

@ -28,7 +28,9 @@ node {
stage('Deploy') {
// Figure out Pom version
def version = (readFile('pom.xml') =~ '<version>(.+?)</version>')[0][1]
def pom = readFile('pom.xml')
def versionMatch = pom =~ "<version>(.+?)</version>"
def version = versionMatch[0][1]
// Start deployment
sh 'mvn -DskipStatic -DskipTests deploy'