From 649cf56cc2687e5780f89660a21799bfd246f0de Mon Sep 17 00:00:00 2001 From: Josef Smrcka Date: Thu, 24 Aug 2023 11:32:10 +0200 Subject: [PATCH] Fix analytics disabled by CI Build-time analytics can be disabled by `CI` environment variable. This fix explicitly sets the value of the variable to `false` for both surefire and failsafe executions in the analytics module, so that it gets executed in every environment. The module itself works around the reasons this feature has been added to Quarkus, which is the fact that the initial analytics user prompt cannot be acted upon in CI environments. See https://github.com/quarkusio/quarkus/pull/35456. --- build-time-analytics/pom.xml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/build-time-analytics/pom.xml b/build-time-analytics/pom.xml index 4eaf55e6c..0d43366b3 100644 --- a/build-time-analytics/pom.xml +++ b/build-time-analytics/pom.xml @@ -17,6 +17,30 @@ test + + + + maven-surefire-plugin + + + + + false + + + + + maven-failsafe-plugin + + + + + false + + + + +