Merge branch 'master' into ccm-admin
commit
e28f646702
|
|
@ -7,14 +7,14 @@ pipeline {
|
|||
stage('Build and Test') {
|
||||
steps {
|
||||
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") {
|
||||
steps {
|
||||
dir('') {
|
||||
sh 'mvn pmd:pmd pmd:cpd spotbugs:spotbugs'
|
||||
sh 'mvn package pmd:pmd pmd:cpd spotbugs:spotbugs'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -22,7 +22,7 @@ pipeline {
|
|||
steps {
|
||||
dir('') {
|
||||
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>
|
||||
* <application>
|
||||
&tl;resource-handler>org.libreccm.ui.CcmFaceletsResourceHandler</resource-handler>
|
||||
&tl;resource-handler>org.libreccm.mvc.facelets.CcmViewResourceHandler</resource-handler>
|
||||
</application>
|
||||
|
||||
* </pre>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
* {@code faces-config.xml}:
|
||||
* <pre>
|
||||
* <application>
|
||||
* &tl;resource-handler>org.libreccm.ui.CcmFaceletsResourceHandler</resource-handler>
|
||||
* &tl;resource-handler>org.libreccm.mvc.facelets.CcmViewResourceHandler</resource-handler>
|
||||
* </application>
|
||||
* </pre>
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue