Skip to content

Commit 4cf7d98

Browse files
[NO-JIRA] Update sonar-plugin-api
1 parent 68aa040 commit 4cf7d98

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@
5858
<license.title>SonarQube XML Plugin</license.title>
5959
<gitRepositoryName>sonar-xml</gitRepositoryName>
6060

61-
<sonar.version>10.0.0.68432</sonar.version>
61+
<sonar.version>10.7.0.96327</sonar.version>
6262
<!-- Minimum version of the plugin API in SQ -->
6363
<sonar.pluginApi.minVersion>9.14.9.375</sonar.pluginApi.minVersion>
6464

6565
<sonar.analyzerCommons.version>2.14.0.3087</sonar.analyzerCommons.version>
6666
<sonar.orchestrator.version>5.0.0.2065</sonar.orchestrator.version>
6767
<!-- Minimum SL version supporting ${sonar.pluginApi.minVersion} -->
6868
<sonar.sonarlint-core.version>8.17.0.70351</sonar.sonarlint-core.version>
69-
<sonar.pluginApi.version>10.1.0.809</sonar.pluginApi.version>
69+
<sonar.pluginApi.version>10.11.0.2468</sonar.pluginApi.version>
7070
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
7171

7272
<!-- Release: enable publication to Bintray -->

sonar-xml-plugin/src/test/java/org/sonar/plugins/xml/XmlSensorTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
import java.util.concurrent.TimeUnit;
3333
import java.util.regex.Pattern;
3434
import java.util.stream.IntStream;
35-
import org.apache.commons.lang.NotImplementedException;
3635
import org.assertj.core.api.Condition;
3736
import org.junit.Rule;
3837
import org.junit.jupiter.api.Test;
@@ -185,7 +184,7 @@ void test_descriptor_sonarqube_9_3_reflection_failure() throws Exception {
185184
DefaultSensorDescriptor sensorDescriptor = new DefaultSensorDescriptor() {
186185
@Override
187186
public SensorDescriptor processesFilesIndependently() {
188-
throw new NotImplementedException();
187+
throw new UnsupportedOperationException();
189188
}
190189
};
191190
sensor.describe(sensorDescriptor);

0 commit comments

Comments
 (0)