File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
src/test/java/com/talanlabs/sonar/plugins/gitlab Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ Sonar GitLab Plugin
66Inspired 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 )
Original file line number Diff line number Diff line change 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 >
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
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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments