diff --git a/8/mysql-tomcat/Dockerfile b/8/mysql-tomcat/Dockerfile index b2efbf14b11da915d7ebaeefc988851bf0963921..9693fd35ebaa288c74fe697abd0f2530297ce441 100644 --- a/8/mysql-tomcat/Dockerfile +++ b/8/mysql-tomcat/Dockerfile @@ -43,12 +43,12 @@ RUN apt-get update && \ # Create the Tomcat temporary directory # Configure the XWiki permanent directory ENV XWIKI_VERSION=8.4.5 -ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/enterprise/xwiki-enterprise-web/${XWIKI_VERSION}" +ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" ENV XWIKI_DOWNLOAD_SHA256 52ed122c44984748a729a784c94cb70ccf0d2fa34c2340d0fd45c75deb3b0bc9 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ - curl -fSL "${XWIKI_URL_PREFIX}/xwiki-enterprise-web-${XWIKI_VERSION}.war" -o xwiki.war && \ + curl -fSL "${XWIKI_URL_PREFIX}/xwiki-platform-distribution-war-${XWIKI_VERSION}.war" -o xwiki.war && \ echo "$XWIKI_DOWNLOAD_SHA256 xwiki.war" | sha256sum -c - && \ unzip -d /usr/local/tomcat/webapps/ROOT xwiki.war && \ rm -f xwiki.war @@ -63,7 +63,7 @@ COPY tomcat/setenv.sh /usr/local/tomcat/bin/ COPY xwiki/hibernate.cfg.xml /usr/local/tomcat/webapps/ROOT/WEB-INF/hibernate.cfg.xml # Set a specific distribution id in XWiki for this docker packaging. -RUN sed -i 's/<id>org.xwiki.enterprise:xwiki-enterprise-web/<id>org.xwiki.enterprise:xwiki-enterprise-docker/' \ +RUN sed -i 's/<id>org.xwiki.platform:xwiki-platform-distribution-war/<id>org.xwiki.platform:xwiki-platform-distribution-docker/' \ /usr/local/tomcat/webapps/ROOT/META-INF/extension.xed # Add scripts required to make changes to XWiki configuration files at execution time diff --git a/8/postgres-tomcat/Dockerfile b/8/postgres-tomcat/Dockerfile index 98f1a34bce99a0d15c279f76498ffbce03793e0c..6c5a454dda27ec231345114931e38a0cc17fcf38 100644 --- a/8/postgres-tomcat/Dockerfile +++ b/8/postgres-tomcat/Dockerfile @@ -43,12 +43,12 @@ RUN apt-get update && \ # Create the Tomcat temporary directory # Configure the XWiki permanent directory ENV XWIKI_VERSION=8.4.5 -ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/enterprise/xwiki-enterprise-web/${XWIKI_VERSION}" +ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" ENV XWIKI_DOWNLOAD_SHA256 52ed122c44984748a729a784c94cb70ccf0d2fa34c2340d0fd45c75deb3b0bc9 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ - curl -fSL "${XWIKI_URL_PREFIX}/xwiki-enterprise-web-${XWIKI_VERSION}.war" -o xwiki.war && \ + curl -fSL "${XWIKI_URL_PREFIX}/xwiki-platform-distribution-war-${XWIKI_VERSION}.war" -o xwiki.war && \ echo "$XWIKI_DOWNLOAD_SHA256 xwiki.war" | sha256sum -c - && \ unzip -d /usr/local/tomcat/webapps/ROOT xwiki.war && \ rm -f xwiki.war @@ -63,7 +63,7 @@ COPY tomcat/setenv.sh /usr/local/tomcat/bin/ COPY xwiki/hibernate.cfg.xml /usr/local/tomcat/webapps/ROOT/WEB-INF/hibernate.cfg.xml # Set a specific distribution id in XWiki for this docker packaging. -RUN sed -i 's/<id>org.xwiki.enterprise:xwiki-enterprise-web/<id>org.xwiki.enterprise:xwiki-enterprise-docker/' \ +RUN sed -i 's/<id>org.xwiki.platform:xwiki-platform-distribution-war/<id>org.xwiki.platform:xwiki-platform-distribution-docker/' \ /usr/local/tomcat/webapps/ROOT/META-INF/extension.xed # Add scripts required to make changes to XWiki configuration files at execution time diff --git a/9/mysql-tomcat/.env b/9/mysql-tomcat/.env index 19681617fe8e02af07325a0573346375b3c5ec13..ad3705b4282f7cb0c8035d3becabc36b3b5b7e83 100644 --- a/9/mysql-tomcat/.env +++ b/9/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=9.4 +XWIKI_VERSION=9.5.1 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/9/mysql-tomcat/Dockerfile b/9/mysql-tomcat/Dockerfile index 0b219e47c2f8c4f27d29c91b009ca78e811e1eac..d862dc7fbcebc410768662cb28645c85524b1373 100644 --- a/9/mysql-tomcat/Dockerfile +++ b/9/mysql-tomcat/Dockerfile @@ -42,13 +42,13 @@ RUN apt-get update && \ # Install XWiki as the ROOT webapp context in Tomcat # Create the Tomcat temporary directory # Configure the XWiki permanent directory -ENV XWIKI_VERSION=9.4 -ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/enterprise/xwiki-enterprise-web/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 0c50d7b261f72f582b94171b80b4711def614845663d0633b17c870b8c84d0fb +ENV XWIKI_VERSION=9.5.1 +ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" +ENV XWIKI_DOWNLOAD_SHA256 0636314e46358bc59a2f1d80bae1958cd93db1ed5cd61ae857c6dd6e99e34fac RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ - curl -fSL "${XWIKI_URL_PREFIX}/xwiki-enterprise-web-${XWIKI_VERSION}.war" -o xwiki.war && \ + curl -fSL "${XWIKI_URL_PREFIX}/xwiki-platform-distribution-war-${XWIKI_VERSION}.war" -o xwiki.war && \ echo "$XWIKI_DOWNLOAD_SHA256 xwiki.war" | sha256sum -c - && \ unzip -d /usr/local/tomcat/webapps/ROOT xwiki.war && \ rm -f xwiki.war @@ -63,7 +63,7 @@ COPY tomcat/setenv.sh /usr/local/tomcat/bin/ COPY xwiki/hibernate.cfg.xml /usr/local/tomcat/webapps/ROOT/WEB-INF/hibernate.cfg.xml # Set a specific distribution id in XWiki for this docker packaging. -RUN sed -i 's/<id>org.xwiki.enterprise:xwiki-enterprise-web/<id>org.xwiki.enterprise:xwiki-enterprise-docker/' \ +RUN sed -i 's/<id>org.xwiki.platform:xwiki-platform-distribution-war/<id>org.xwiki.platform:xwiki-platform-distribution-docker/' \ /usr/local/tomcat/webapps/ROOT/META-INF/extension.xed # Add scripts required to make changes to XWiki configuration files at execution time diff --git a/9/postgres-tomcat/.env b/9/postgres-tomcat/.env index 014a48314ddbdcdc36c48d99ccb8d65968dd21b9..bf4b5eb6bb53a17ebb3f8ec266ae710f7e41b7d4 100644 --- a/9/postgres-tomcat/.env +++ b/9/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=9.4 +XWIKI_VERSION=9.5.1 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/9/postgres-tomcat/Dockerfile b/9/postgres-tomcat/Dockerfile index da562604ff7c17402168bf1991f34ab04908c2f6..3ece5c71e0c5bba46b8f6c6bf3afc2cf8f355e69 100644 --- a/9/postgres-tomcat/Dockerfile +++ b/9/postgres-tomcat/Dockerfile @@ -42,13 +42,13 @@ RUN apt-get update && \ # Install XWiki as the ROOT webapp context in Tomcat # Create the Tomcat temporary directory # Configure the XWiki permanent directory -ENV XWIKI_VERSION=9.4 -ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/enterprise/xwiki-enterprise-web/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 0c50d7b261f72f582b94171b80b4711def614845663d0633b17c870b8c84d0fb +ENV XWIKI_VERSION=9.5.1 +ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" +ENV XWIKI_DOWNLOAD_SHA256 0636314e46358bc59a2f1d80bae1958cd93db1ed5cd61ae857c6dd6e99e34fac RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ - curl -fSL "${XWIKI_URL_PREFIX}/xwiki-enterprise-web-${XWIKI_VERSION}.war" -o xwiki.war && \ + curl -fSL "${XWIKI_URL_PREFIX}/xwiki-platform-distribution-war-${XWIKI_VERSION}.war" -o xwiki.war && \ echo "$XWIKI_DOWNLOAD_SHA256 xwiki.war" | sha256sum -c - && \ unzip -d /usr/local/tomcat/webapps/ROOT xwiki.war && \ rm -f xwiki.war @@ -63,7 +63,7 @@ COPY tomcat/setenv.sh /usr/local/tomcat/bin/ COPY xwiki/hibernate.cfg.xml /usr/local/tomcat/webapps/ROOT/WEB-INF/hibernate.cfg.xml # Set a specific distribution id in XWiki for this docker packaging. -RUN sed -i 's/<id>org.xwiki.enterprise:xwiki-enterprise-web/<id>org.xwiki.enterprise:xwiki-enterprise-docker/' \ +RUN sed -i 's/<id>org.xwiki.platform:xwiki-platform-distribution-war/<id>org.xwiki.platform:xwiki-platform-distribution-docker/' \ /usr/local/tomcat/webapps/ROOT/META-INF/extension.xed # Add scripts required to make changes to XWiki configuration files at execution time diff --git a/build.gradle b/build.gradle index 4ea27c93f83b9f05f044083559a3bd56d0a30782..292076ef67dd4214e7a2f80009c41aa5baaf5fbc 100644 --- a/build.gradle +++ b/build.gradle @@ -39,8 +39,8 @@ def tokens = [ xwikiSha256: '52ed122c44984748a729a784c94cb70ccf0d2fa34c2340d0fd45c75deb3b0bc9' ], '9' : [ - xwikiVersion: '9.4', - xwikiSha256: '0c50d7b261f72f582b94171b80b4711def614845663d0633b17c870b8c84d0fb' + xwikiVersion: '9.5.1', + xwikiSha256: '0636314e46358bc59a2f1d80bae1958cd93db1ed5cd61ae857c6dd6e99e34fac' ] ] diff --git a/template/Dockerfile b/template/Dockerfile index c5b2fb6b67fef72c79931047e6f9954594b54ef3..74c4c07146125bfc278c0ac654822540f63723e8 100644 --- a/template/Dockerfile +++ b/template/Dockerfile @@ -44,12 +44,12 @@ RUN apt-get update && \\ # Create the Tomcat temporary directory # Configure the XWiki permanent directory ENV XWIKI_VERSION=$xwikiVersion -ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/enterprise/xwiki-enterprise-web/\${XWIKI_VERSION}" +ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/\${XWIKI_VERSION}" ENV XWIKI_DOWNLOAD_SHA256 $xwikiSha256 RUN rm -rf /usr/local/tomcat/webapps/* && \\ mkdir -p /usr/local/tomcat/temp && \\ mkdir -p /usr/local/xwiki/data && \\ - curl -fSL "\${XWIKI_URL_PREFIX}/xwiki-enterprise-web-\${XWIKI_VERSION}.war" -o xwiki.war && \\ + curl -fSL "\${XWIKI_URL_PREFIX}/xwiki-platform-distribution-war-\${XWIKI_VERSION}.war" -o xwiki.war && \\ echo "\$XWIKI_DOWNLOAD_SHA256 xwiki.war" | sha256sum -c - && \\ unzip -d /usr/local/tomcat/webapps/ROOT xwiki.war && \\ rm -f xwiki.war @@ -67,7 +67,7 @@ COPY tomcat/setenv.sh /usr/local/tomcat/bin/ COPY xwiki/hibernate.cfg.xml /usr/local/tomcat/webapps/ROOT/WEB-INF/hibernate.cfg.xml # Set a specific distribution id in XWiki for this docker packaging. -RUN sed -i 's/<id>org.xwiki.enterprise:xwiki-enterprise-web/<id>org.xwiki.enterprise:xwiki-enterprise-docker/' \\ +RUN sed -i 's/<id>org.xwiki.platform:xwiki-platform-distribution-war/<id>org.xwiki.platform:xwiki-platform-distribution-docker/' \\ /usr/local/tomcat/webapps/ROOT/META-INF/extension.xed # Add scripts required to make changes to XWiki configuration files at execution time