From 5899d2bec3bf1f33db75d057607539cb22b27cc4 Mon Sep 17 00:00:00 2001 From: Michael Hamann Date: Tue, 30 Apr 2024 15:35:01 +0200 Subject: [PATCH] XDOCKER-320: Upgrade stable version to 16.3.0 --- 16/mariadb-tomcat/.env | 2 +- 16/mariadb-tomcat/Dockerfile | 4 ++-- 16/mysql-tomcat/.env | 2 +- 16/mysql-tomcat/Dockerfile | 4 ++-- 16/postgres-tomcat/.env | 2 +- 16/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/16/mariadb-tomcat/.env b/16/mariadb-tomcat/.env index 6b9ef56..0227159 100644 --- a/16/mariadb-tomcat/.env +++ b/16/mariadb-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=16.2.0 +XWIKI_VERSION=16.3.0 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/16/mariadb-tomcat/Dockerfile b/16/mariadb-tomcat/Dockerfile index f5ddb70..ce4e64e 100644 --- a/16/mariadb-tomcat/Dockerfile +++ b/16/mariadb-tomcat/Dockerfile @@ -48,9 +48,9 @@ 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="16.2.0" +ENV XWIKI_VERSION="16.3.0" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 7d355ae1c88691b19af9658e3f042083d57c08d5e52e1ade25536536ad72fb3f +ENV XWIKI_DOWNLOAD_SHA256 3d75d5d495ed89af2e76a6058fa347094be0efd4862f88814640cc18ef3e33ba RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/16/mysql-tomcat/.env b/16/mysql-tomcat/.env index 6b9ef56..0227159 100644 --- a/16/mysql-tomcat/.env +++ b/16/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=16.2.0 +XWIKI_VERSION=16.3.0 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/16/mysql-tomcat/Dockerfile b/16/mysql-tomcat/Dockerfile index 550d9a2..b52a5b8 100644 --- a/16/mysql-tomcat/Dockerfile +++ b/16/mysql-tomcat/Dockerfile @@ -48,9 +48,9 @@ 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="16.2.0" +ENV XWIKI_VERSION="16.3.0" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 7d355ae1c88691b19af9658e3f042083d57c08d5e52e1ade25536536ad72fb3f +ENV XWIKI_DOWNLOAD_SHA256 3d75d5d495ed89af2e76a6058fa347094be0efd4862f88814640cc18ef3e33ba RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/16/postgres-tomcat/.env b/16/postgres-tomcat/.env index 27e5443..449df0d 100644 --- a/16/postgres-tomcat/.env +++ b/16/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=16.2.0 +XWIKI_VERSION=16.3.0 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/16/postgres-tomcat/Dockerfile b/16/postgres-tomcat/Dockerfile index afbab5c..4bcb565 100644 --- a/16/postgres-tomcat/Dockerfile +++ b/16/postgres-tomcat/Dockerfile @@ -49,9 +49,9 @@ 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="16.2.0" +ENV XWIKI_VERSION="16.3.0" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 7d355ae1c88691b19af9658e3f042083d57c08d5e52e1ade25536536ad72fb3f +ENV XWIKI_DOWNLOAD_SHA256 3d75d5d495ed89af2e76a6058fa347094be0efd4862f88814640cc18ef3e33ba RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/build.gradle b/build.gradle index 3781597..98d8659 100644 --- a/build.gradle +++ b/build.gradle @@ -47,8 +47,8 @@ def variants = ['mysql-tomcat', 'mariadb-tomcat', 'postgres-tomcat'] def tokens = [ '16': [ - xwikiVersion: '16.2.0', - xwikiSha256: '7d355ae1c88691b19af9658e3f042083d57c08d5e52e1ade25536536ad72fb3f', + xwikiVersion: '16.3.0', + xwikiSha256: '3d75d5d495ed89af2e76a6058fa347094be0efd4862f88814640cc18ef3e33ba', mysqlJDBCVersion: '8.3.0', mysqlJDBCSha256: '94e7fa815370cdcefed915db7f53f88445fac110f8c3818392b992ec9ee6d295', mariadbJDBCVersion: '3.3.3',