Fixed many warnings
This commit is contained in:
parent
c570847f3a
commit
ccecc067b2
160 changed files with 951 additions and 1151 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue