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

Commit 05f4c33

Browse files
authored
Merge pull request #148 from detekt/nc/prepare-2.4.0
2 parents aa14835 + ce3918a commit 05f4c33

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Detekt - Changelog
22

3+
#### 2.4.0 - 2021-10-31
4+
5+
##### Changelog
6+
7+
- Based on detekt 1.18.1
8+
- Fixed definition of prop `inputPaths` using sonar.sources
9+
- Fixed usage of `Path` for Java 8
10+
11+
##### Dependencies Update
12+
13+
- Sonar API to 9.1.0.47736
14+
- Kotlin to 1.5.31
15+
- AssertJ to 3.21.0
16+
- JCommander to 1.81
17+
- Tested on CI against Java 16
18+
319
#### 2.3.0 - 2020-09-26
420

521
- Based on detekt 1.14.1

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>io.github.detekt</groupId>
77
<artifactId>sonar-detekt</artifactId>
8-
<version>2.3.0</version>
8+
<version>2.4.0</version>
99
<url>https://github.com/detekt/sonar-kotlin</url>
1010

1111
<licenses>
@@ -19,12 +19,12 @@
1919
<packaging>sonar-plugin</packaging>
2020

2121
<properties>
22-
<kotlin.version>1.5.30</kotlin.version>
22+
<kotlin.version>1.5.31</kotlin.version>
2323
<spek.version>2.0.17</spek.version>
2424
<detekt.version>1.18.1</detekt.version>
25-
<sonar.api.version>8.9.2.46101</sonar.api.version>
26-
<assertj.version>3.20.2</assertj.version>
27-
<jcommander.version>1.78</jcommander.version>
25+
<sonar.api.version>9.1.0.47736</sonar.api.version>
26+
<assertj.version>3.21.0</assertj.version>
27+
<jcommander.version>1.81</jcommander.version>
2828
<mockk.version>1.12.0</mockk.version>
2929
<maven.compiler.source>1.8</maven.compiler.source>
3030
<maven.compiler.target>1.8</maven.compiler.target>
@@ -115,7 +115,7 @@
115115
<plugin>
116116
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
117117
<artifactId>sonar-packaging-maven-plugin</artifactId>
118-
<version>1.19.0.397</version>
118+
<version>1.20.0.405</version>
119119
<extensions>true</extensions>
120120
<configuration>
121121
<pluginKey>detekt</pluginKey>
@@ -164,7 +164,7 @@
164164
<plugin>
165165
<groupId>org.apache.maven.plugins</groupId>
166166
<artifactId>maven-compiler-plugin</artifactId>
167-
<version>3.5.1</version>
167+
<version>3.8.1</version>
168168
<executions>
169169
<!-- Replacing default-compile as it is treated specially by maven -->
170170
<execution>
@@ -195,7 +195,7 @@
195195
<plugin>
196196
<groupId>org.jacoco</groupId>
197197
<artifactId>jacoco-maven-plugin</artifactId>
198-
<version>0.8.5</version>
198+
<version>0.8.7</version>
199199
<executions>
200200
<execution>
201201
<goals>
@@ -230,7 +230,7 @@
230230
<plugin>
231231
<groupId>org.codehaus.mojo</groupId>
232232
<artifactId>versions-maven-plugin</artifactId>
233-
<version>2.7</version>
233+
<version>2.8.1</version>
234234
</plugin>
235235
</plugins>
236236
</build>

0 commit comments

Comments
 (0)