Merge branch 'master' into ccm-admin

ccm-docs
Jens Pelzetter 2020-12-19 16:53:56 +01:00
commit e28f646702
3 changed files with 5 additions and 5 deletions

6
Jenkinsfile vendored
View File

@ -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'
} }
} }
} }

View File

@ -39,7 +39,7 @@ import javax.inject.Inject;
* *
* <pre> * <pre>
* &lt;application&gt; * &lt;application&gt;
&tl;resource-handler&gt;org.libreccm.ui.CcmFaceletsResourceHandler&lt;/resource-handler&gt; &tl;resource-handler&gt;org.libreccm.mvc.facelets.CcmViewResourceHandler&lt;/resource-handler&gt;
&lt;/application&gt; &lt;/application&gt;
* </pre> * </pre>

View File

@ -24,7 +24,7 @@
* {@code faces-config.xml}: * {@code faces-config.xml}:
* <pre> * <pre>
* &lt;application&gt; * &lt;application&gt;
* &tl;resource-handler&gt;org.libreccm.ui.CcmFaceletsResourceHandler&lt;/resource-handler&gt; * &tl;resource-handler&gt;org.libreccm.mvc.facelets.CcmViewResourceHandler&lt;/resource-handler&gt;
* &lt;/application&gt; * &lt;/application&gt;
* </pre> * </pre>
* *