Skip to content

Commit

Permalink
Merge branch 'release/1.63.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
sklein94 committed Feb 16, 2023
2 parents 788460c + abfa648 commit 8a45afc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.63.0](https://github.com/cloudogu/ces-build-lib/releases/tag/1.63.0) - 2023-02-16
## Fixed
- A bug with SonarCloud where an error was thrown because a private field was accessed (#99)

## [1.62.0](https://github.com/cloudogu/ces-build-lib/releases/tag/1.62.0) - 2023-01-30
## Added
- Function lintDockerfile to lint docker files #96.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.cloudogu.ces</groupId>
<artifactId>ces-build-lib</artifactId>
<name>ces-build-lib</name>
<version>1.62.0</version>
<version>1.63.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
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 8a45afc

Please sign in to comment.