Skip to content

Commit

Permalink
Minor fix in SonarCloud
Browse files Browse the repository at this point in the history
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
  • Loading branch information
schnatterer committed Feb 14, 2023
1 parent e916d06 commit 3d6517c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/cloudogu/ces/cesbuildlib/SonarQube.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3d6517c

Please sign in to comment.