Skip to content

Commit 87ce87a

Browse files
author
javamachr
committed
Upgrade of deps to sonar 9.9
1 parent 5fc3db7 commit 87ce87a

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Sonar GitLab Plugin
66
Inspired by https://github.com/SonarCommunity/sonar-github
77

88
# Current version
9+
## Version 5.3.0
10+
** Only SonarQube 9.9+ **
11+
12+
* bumped plugin api version to 9.14.0.375
13+
* bumped plugin api impl version to 9.9.0.65466
14+
915
## Version 5.3.0
1016

1117
* Merged [Make the GitLab status name configurable](https://github.com/javamachr/sonar-gitlab-plugin/pull/31)

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.talanlabs</groupId>
1212
<artifactId>sonar-gitlab-plugin</artifactId>
13-
<version>5.3.0</version>
13+
<version>5.4.0</version>
1414
<name>SonarQube :: GitLab Plugin</name>
1515
<description>GitLab Plugin for Reporting</description>
1616
<packaging>sonar-plugin</packaging>
@@ -26,7 +26,7 @@
2626
<license.mailto>gabriel.allaigre@gmail.com</license.mailto>
2727
<license.owner>Talanlabs</license.owner>
2828

29-
<sonar.version>9.5.0.56709</sonar.version>
29+
<sonar.version>9.9.0.65466</sonar.version>
3030
<sonar.pluginName>GitLab</sonar.pluginName>
3131
<sonar.pluginClass>com.talanlabs.sonar.plugins.gitlab.GitLabPlugin</sonar.pluginClass>
3232

@@ -142,7 +142,7 @@
142142
<dependency>
143143
<groupId>org.sonarsource.api.plugin</groupId>
144144
<artifactId>sonar-plugin-api</artifactId>
145-
<version>9.5.0.71</version>
145+
<version>9.14.0.375</version>
146146
<scope>provided</scope>
147147
</dependency>
148148
<dependency>

src/test/java/com/talanlabs/sonar/plugins/gitlab/SonarFacadeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ public void tesFailed2GetNewIssue() {
385385
private void testNotEmpty2GetNewIssueForQualifier(String qualifier) throws IOException {
386386
Issues.SearchWsResponse searchWsResponse = Issues.SearchWsResponse.newBuilder().setTotal(1).setPs(10).addIssues(
387387
Issues.Issue.newBuilder().setKey("123").setComponent("moi:ici:toto.java").setRule("squid:123").setLine(10).setMessage("Error here").setSeverity(Common.Severity.BLOCKER)
388-
.setProject("moi").setSubProject("moi:ici").build()).addComponents(Issues.Component.newBuilder().setKey("moi:ici:toto.java").setQualifier(qualifier).setPath("toto.java").build())
388+
.setProject("moi").build()).addComponents(Issues.Component.newBuilder().setKey("moi:ici:toto.java").setQualifier(qualifier).setPath("toto.java").build())
389389
.build();
390390
sonar.enqueue(new MockResponse().setResponseCode(200).addHeader("Content-Type", "application/x-protobuf").setBody(toBuffer(searchWsResponse)));
391391

0 commit comments

Comments
 (0)