File tree 3 files changed +4
-4
lines changed
main/java/org/sonarsource/sonarlint/core/plugin
test/java/org/sonarsource/sonarlint/core/plugin
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 38
38
39
39
public class PluginCacheLoader {
40
40
41
- private static final String IMPLEMENTED_SQ_API = "8.1 " ;
41
+ private static final String IMPLEMENTED_SQ_API = "8.2 " ;
42
42
43
43
private static final Logger LOG = Loggers .get (PluginCacheLoader .class );
44
44
Original file line number Diff line number Diff line change 41
41
import org .sonar .api .utils .MessageException ;
42
42
import org .sonar .api .utils .ZipUtils ;
43
43
import org .sonar .api .utils .log .LogTesterJUnit5 ;
44
- import org .sonarsource .sonarlint .core .client .api .connected .ConnectedGlobalConfiguration ;
45
44
import org .sonarsource .sonarlint .core .client .api .common .Language ;
45
+ import org .sonarsource .sonarlint .core .client .api .connected .ConnectedGlobalConfiguration ;
46
46
import org .sonarsource .sonarlint .core .client .api .exceptions .StorageException ;
47
47
import org .sonarsource .sonarlint .core .container .connected .validate .PluginVersionChecker ;
48
48
import org .sonarsource .sonarlint .core .plugin .PluginIndex .PluginReference ;
@@ -134,7 +134,7 @@ public void load_plugin_skip_unsupported_plugins_api_version(@TempDir Path stora
134
134
when (pluginVersionChecker .getMinimumVersion (FAKE_PLUGIN_KEY )).thenReturn ("2.0" );
135
135
136
136
assertThat (underTest .load ()).hasSize (0 );
137
- assertThat (logsWithoutStartStop ()).contains ("Code analyzer 'pluginkey' needs plugin API 99.9 while SonarLint supports only up to 8.1 . Skip loading it." );
137
+ assertThat (logsWithoutStartStop ()).contains ("Code analyzer 'pluginkey' needs plugin API 99.9 while SonarLint supports only up to 8.2 . Skip loading it." );
138
138
}
139
139
140
140
@ Test
Original file line number Diff line number Diff line change 32
32
33
33
<properties >
34
34
<!-- Don't forget to also update PluginCacheLoader::IMPLEMENTED_SQ_API -->
35
- <sonarqube .version>8.1 .0.31237 </sonarqube .version>
35
+ <sonarqube .version>8.2 .0.32929 </sonarqube .version>
36
36
<sonar-ws .version>6.7</sonar-ws .version>
37
37
<sonar-scanner-protocol .version>6.7</sonar-scanner-protocol .version>
38
38
<grpc .version>1.22.0</grpc .version>
You can’t perform that action at this time.
0 commit comments