Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
Prepare release 2.5.0 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico authored Jan 10, 2022
1 parent 05f4c33 commit d4dee36
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Detekt - Changelog

#### 2.5.0 - 2022-01-09

##### Changelog

- Based on detekt 1.19.0
- Configured `sonarQubeMinVersion` to 8.9

##### Dependencies Update

- Kotlin to 1.6.10

#### 2.4.0 - 2021-10-31

##### Changelog
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

- Integrates [detekt](https://github.com/detekt/detekt) for static code analysis
- Default quality profiles `detekt active` (80+ rules) and `detekt all` (164+ rules)
- Supports SonarQube 7.9.3+
- Supports SonarQube 8.9+
- Supports detekt's `yaml config`, `baseline.xml` and `excludes`
- Seamless integration with official SonarKotlin (no redundant features)

Expand Down
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.detekt</groupId>
<artifactId>sonar-detekt</artifactId>
<version>2.4.0</version>
<version>2.5.0</version>
<url>https://github.com/detekt/sonar-kotlin</url>

<licenses>
Expand All @@ -19,9 +19,9 @@
<packaging>sonar-plugin</packaging>

<properties>
<kotlin.version>1.5.31</kotlin.version>
<kotlin.version>1.6.10</kotlin.version>
<spek.version>2.0.17</spek.version>
<detekt.version>1.18.1</detekt.version>
<detekt.version>1.19.0</detekt.version>
<sonar.api.version>9.1.0.47736</sonar.api.version>
<assertj.version>3.21.0</assertj.version>
<jcommander.version>1.81</jcommander.version>
Expand Down Expand Up @@ -59,6 +59,11 @@
<artifactId>detekt-formatting</artifactId>
<version>${detekt.version}</version>
</dependency>
<dependency>
<groupId>io.gitlab.arturbosch.detekt</groupId>
<artifactId>detekt-api</artifactId>
<version>${detekt.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-compiler-embeddable</artifactId>
Expand Down Expand Up @@ -127,6 +132,7 @@
<pluginIssueTrackerUrl>https://github.com/detekt/sonar-kotlin/issues</pluginIssueTrackerUrl>
<pluginOrganizationName>detekt Team</pluginOrganizationName>
<pluginOrganizationUrl>https://github.com/detekt</pluginOrganizationUrl>
<sonarQubeMinVersion>8.9</sonarQubeMinVersion>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -214,7 +220,7 @@
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.18.1.1</version>
<version>1.19.0</version>
<executions>
<execution>
<phase>verify</phase>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package io.gitlab.arturbosch.detekt.sonar.rules

import io.github.detekt.tooling.api.DefaultConfigurationProvider
import io.gitlab.arturbosch.detekt.api.BaseRule
import io.gitlab.arturbosch.detekt.api.Config
import io.gitlab.arturbosch.detekt.api.Issue
import io.gitlab.arturbosch.detekt.api.MultiRule
import io.gitlab.arturbosch.detekt.api.Rule
import io.gitlab.arturbosch.detekt.api.RuleSetProvider
import io.gitlab.arturbosch.detekt.api.internal.BaseRule
import io.gitlab.arturbosch.detekt.sonar.foundation.REPOSITORY_KEY
import org.sonar.api.rule.RuleKey
import java.util.ServiceLoader
Expand Down

0 comments on commit d4dee36

Please sign in to comment.