From f2dfb13d36631bff5dc10dc20eac685dff9848a5 Mon Sep 17 00:00:00 2001 From: Augusto Passalacqua Date: Mon, 16 Feb 2026 10:49:18 +0100 Subject: [PATCH 1/3] Rename LICENSE.txt and add to the list of files to include in the final mpk --- LICENSE => LICENSE.txt | 0 build.gradle | 2 +- environment.gradle | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) rename LICENSE => LICENSE.txt (100%) diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/build.gradle b/build.gradle index e7d4513..84d4d6e 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ mxMarketplace { appName = "Audittrail" filterWidgets = true appDirectory = "." - includeFiles = List.of(ossClearanceFile) + includeFiles = List.of(ossClearanceFile, licenseFile) versionPathPrefix = "__Version " // the path prefix within the module to the version folder } diff --git a/environment.gradle b/environment.gradle index fdbad81..d83e6f4 100644 --- a/environment.gradle +++ b/environment.gradle @@ -7,3 +7,4 @@ def mxInstallVersion = System.getenv('MODELER_VERSION') ?: System.getenv('MX_INS project.ext.mxInstallPath = "${mxPath}/${mxInstallVersion}" project.ext.mxRuntimeBundles = new File("${mxInstallPath}/runtime/bundles") project.ext.ossClearanceFile = file("SiemensMendixAudittrail__10.2.0__READMEOSS.html") +project.ext.licenseFile = file("LICENSE.txt") From 1c5146fe9217811ae75bf91295b19607dda4cd7c Mon Sep 17 00:00:00 2001 From: Augusto Passalacqua Date: Mon, 16 Feb 2026 10:49:52 +0100 Subject: [PATCH 2/3] Bump version to 10.2.1 and add a release note --- Audit trail.mpr | Bin 6770688 -> 6770688 bytes gradle.properties | 2 +- marketplace/release-notes/10.2.1.txt | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 marketplace/release-notes/10.2.1.txt diff --git a/Audit trail.mpr b/Audit trail.mpr index 75e381baad192dc8a5297ea7ee5edc9e5a8fa89f..1e9aa31bdb94a7cac737bc7c9f1ee9fc8d9aea91 100644 GIT binary patch delta 473 zcmWm8Ni%|R9Ki8O*@ehj_FZ_M(rPD(o=D2R{e(n3Y(Rlq;!FQmLd$Nwtz1CACWGlvtJ2D``;D_#-yE z;R+VQx|U4e`E`Fz*W7{Icp~fbKKlxuhx?EgON8=~d?K28)SvW^FT<8HxnE0$4NYi< z9W7`@8`{xtRjLnM6r$y#9$zfO>7~7Z6vXS6w=tm9`_TKM`z}%AF@|zi5h~fY-#F4-uk~qRKQb^+jr#QnoE^rA! R23cI;8adqjR Date: Mon, 16 Feb 2026 10:50:10 +0100 Subject: [PATCH 3/3] Bump the publish-module-plugin to version 1.23 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 84d4d6e..f80a5e7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'com.mendix.gradle.publish-module-plugin' version '1.17' + id 'com.mendix.gradle.publish-module-plugin' version '1.23' id 'net.researchgate.release' version '2.8.1' }