Merge branch 'master' into ccm-admin
commit
e28f646702
|
|
@ -7,14 +7,14 @@ pipeline {
|
||||||
stage('Build and Test') {
|
stage('Build and Test') {
|
||||||
steps {
|
steps {
|
||||||
dir('') {
|
dir('') {
|
||||||
sh 'mvn clean verify -Prun-its-with-wildfly-h2mem -Dwildfly.propertiesFile=/srv/libreccm-wildfly.properties'
|
sh 'mvn clean package verify -Prun-its-with-wildfly-h2mem -Dwildfly.propertiesFile=/srv/libreccm-wildfly.properties'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Analyse") {
|
stage("Analyse") {
|
||||||
steps {
|
steps {
|
||||||
dir('') {
|
dir('') {
|
||||||
sh 'mvn pmd:pmd pmd:cpd spotbugs:spotbugs'
|
sh 'mvn package pmd:pmd pmd:cpd spotbugs:spotbugs'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -22,7 +22,7 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
dir('') {
|
dir('') {
|
||||||
configFileProvider([configFile(fileId: 'libreccm-packages-deploy', variable: 'MAVEN_SETTINGS')]) {
|
configFileProvider([configFile(fileId: 'libreccm-packages-deploy', variable: 'MAVEN_SETTINGS')]) {
|
||||||
sh 'mvn -U -s "$MAVEN_SETTINGS" -e deploy'
|
sh 'mvn -U -s "$MAVEN_SETTINGS" -e package deploy'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ import javax.inject.Inject;
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <application>
|
* <application>
|
||||||
&tl;resource-handler>org.libreccm.ui.CcmFaceletsResourceHandler</resource-handler>
|
&tl;resource-handler>org.libreccm.mvc.facelets.CcmViewResourceHandler</resource-handler>
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
* </pre>
|
* </pre>
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
* {@code faces-config.xml}:
|
* {@code faces-config.xml}:
|
||||||
* <pre>
|
* <pre>
|
||||||
* <application>
|
* <application>
|
||||||
* &tl;resource-handler>org.libreccm.ui.CcmFaceletsResourceHandler</resource-handler>
|
* &tl;resource-handler>org.libreccm.mvc.facelets.CcmViewResourceHandler</resource-handler>
|
||||||
* </application>
|
* </application>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue