From 3d6517c247ce7fa1f17208f9d07ab31fc7fdc362 Mon Sep 17 00:00:00 2001 From: Johannes Schnatterer Date: Tue, 14 Feb 2023 13:53:58 +0100 Subject: [PATCH] Minor fix in SonarCloud java.lang.IllegalAccessError: class com.cloudogu.ces.cesbuildlib.SonarCloud tried to access private field com.cloudogu.ces.cesbuildlib.SonarQube.isUsingBranchPlugin (com.cloudogu.ces.cesbuildlib.SonarCloud and com.cloudogu.ces.cesbuildlib.SonarQube are in unnamed module of loader --- src/com/cloudogu/ces/cesbuildlib/SonarQube.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/cloudogu/ces/cesbuildlib/SonarQube.groovy b/src/com/cloudogu/ces/cesbuildlib/SonarQube.groovy index 82f3474b..a47036b9 100644 --- a/src/com/cloudogu/ces/cesbuildlib/SonarQube.groovy +++ b/src/com/cloudogu/ces/cesbuildlib/SonarQube.groovy @@ -9,10 +9,10 @@ package com.cloudogu.ces.cesbuildlib class SonarQube implements Serializable { protected script - // If enabled uses the branch plugin, available for developer edition and above - boolean isUsingBranchPlugin = false boolean isIgnoringBranches = false int timeoutInMinutes = 2 + // If enabled uses the branch plugin, available for developer edition and above + protected boolean isUsingBranchPlugin = false protected Map config @Deprecated