Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Commit e399de6

Browse files
authored
Merge pull request #20 from eea/develop
Release
2 parents dda2363 + 7ffbd09 commit e399de6

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ pipeline {
155155
def nodeJS = tool 'NodeJS11';
156156
withSonarQubeEnv('Sonarqube') {
157157
sh '''sed -i "s|/plone/instance/src/$GIT_NAME|$(pwd)|g" coverage.xml'''
158-
sh "export PATH=$PATH:${scannerHome}/bin:${nodeJS}/bin; sonar-scanner -Dsonar.python.xunit.skipDetails=true -Dsonar.python.xunit.reportPath=xunit-reports/*.xml -Dsonar.python.coverage.reportPath=coverage.xml -Dsonar.sources=./eea -Dsonar.projectKey=$GIT_NAME-$BRANCH_NAME -Dsonar.projectVersion=$BRANCH_NAME-$BUILD_NUMBER"
158+
sh "export PATH=$PATH:${scannerHome}/bin:${nodeJS}/bin; sonar-scanner -Dsonar.python.xunit.skipDetails=true -Dsonar.python.xunit.reportPath=xunit-reports/*.xml -Dsonar.python.coverage.reportPaths=coverage.xml -Dsonar.sources=./eea -Dsonar.projectKey=$GIT_NAME-$BRANCH_NAME -Dsonar.projectVersion=$BRANCH_NAME-$BUILD_NUMBER"
159159
sh '''try=2; while [ \$try -gt 0 ]; do curl -s -XPOST -u "${SONAR_AUTH_TOKEN}:" "${SONAR_HOST_URL}api/project_tags/set?project=${GIT_NAME}-${BRANCH_NAME}&tags=${SONARQUBE_TAGS},${BRANCH_NAME}" > set_tags_result; if [ \$(grep -ic error set_tags_result ) -eq 0 ]; then try=0; else cat set_tags_result; echo "... Will retry"; sleep 60; try=\$(( \$try - 1 )); fi; done'''
160160
}
161161
}

docs/HISTORY.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
11.3 - (2021-11-01)
5+
---------------------------
6+
* Change: Explicitly load zcml of dependencies, instead of using includeDependencies
7+
[avoinea]
8+
49
11.2 - (2020-02-28)
510
--------------------------
611
* Change: patch slick.grid.js to use dispatch.call instead of handle.call

eea/jquery/plone.zcml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:zcml="http://namespaces.zope.org/zcml"
44
i18n_domain="eea">
55

6-
<includeDependencies package="." />
6+
<include package="collective.js.jqueryui" />
77
<include zcml:condition="have plone-5"
88
file="profiles.zcml" />
99
<include zcml:condition="not-have plone-5"

eea/jquery/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.2
1+
11.3

0 commit comments

Comments
 (0)