Skip to content

Commit a25a80e

Browse files
SCANJLIB-282 Upgrade SonarQube dependency (#261)
1 parent b4946f0 commit a25a80e

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

batch/pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<name>SonarScanner Java Library - Batch</name>
1212

1313
<properties>
14-
<sonarQubeVersion>6.6</sonarQubeVersion>
14+
<sonarQubeVersion>25.9.0.112764</sonarQubeVersion>
1515
</properties>
1616

1717
<dependencies>
@@ -26,6 +26,12 @@
2626
<artifactId>sonar-scanner-engine</artifactId>
2727
<version>${sonarQubeVersion}</version>
2828
<scope>provided</scope>
29+
<exclusions>
30+
<exclusion>
31+
<groupId>*</groupId>
32+
<artifactId>*</artifactId>
33+
</exclusion>
34+
</exclusions>
2935
</dependency>
3036

3137
<!-- Unit tests -->
@@ -61,6 +67,18 @@
6167
<artifactId>mockito-core</artifactId>
6268
<scope>test</scope>
6369
</dependency>
70+
<!-- Transitively required in Tests by sonar-scanner-engine -->
71+
<dependency>
72+
<groupId>org.sonarsource.api.plugin</groupId>
73+
<artifactId>sonar-plugin-api</artifactId>
74+
<version>13.2.0.3137</version>
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.apache.commons</groupId>
79+
<artifactId>commons-lang3</artifactId>
80+
<scope>test</scope>
81+
</dependency>
6482
</dependencies>
6583

6684
<build>

0 commit comments

Comments
 (0)