Skip to content

Commit 0a3d3ee

Browse files
update dependencies, update readme, small code updates (#202)
Signed-off-by: Nicklas Körtge <nicklas.koertge1@ibm.com>
1 parent a1c79a9 commit 0a3d3ee

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ It is part of **the [CBOMKit](https://github.com/IBM/cbomkit) toolset**.
1010

1111
## Version compatibility
1212

13-
| Plugin Version | SonarQube Version |
14-
|----------------|------------------------|
15-
| 1.3.2 and up | SonarQube 9.8 and up |
16-
| 1.2.0 to 1.3.1 | SonarQube 9.8 and 10.4 |
13+
| Plugin Version | SonarQube Version |
14+
|-----------------|--------------------------------|
15+
| 1.3.7 and up | SonarQube 9.9 (LTS) and up |
16+
| 1.3.2 and 1.3.6 | SonarQube 9.8 (LTS) up to 10.8 |
17+
| 1.2.0 to 1.3.1 | SonarQube 9.8 (LTS) up to 10.4 |
1718

1819

1920
## Supported languages and libraries

java/src/test/java/com/ibm/plugin/rules/issues/ClientEncryptionJavaDuplicatedRSADetectionTest.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
*/
2020
package com.ibm.plugin.rules.issues;
2121

22+
import static org.assertj.core.api.Assertions.assertThat;
23+
2224
import com.ibm.engine.detection.DetectionStore;
2325
import com.ibm.engine.model.Algorithm;
2426
import com.ibm.engine.model.CipherAction;
@@ -34,6 +36,8 @@
3436
import com.ibm.mapper.model.functionality.Decapsulate;
3537
import com.ibm.mapper.model.functionality.Encapsulate;
3638
import com.ibm.plugin.TestBase;
39+
import java.util.List;
40+
import javax.annotation.Nonnull;
3741
import org.junit.jupiter.api.Disabled;
3842
import org.junit.jupiter.api.Test;
3943
import org.sonar.java.checks.verifier.CheckVerifier;
@@ -42,11 +46,6 @@
4246
import org.sonar.plugins.java.api.semantic.Symbol;
4347
import org.sonar.plugins.java.api.tree.Tree;
4448

45-
import javax.annotation.Nonnull;
46-
import java.util.List;
47-
48-
import static org.assertj.core.api.Assertions.assertThat;
49-
5049
class ClientEncryptionJavaDuplicatedRSADetectionTest extends TestBase {
5150

5251
@Test

mapper/src/main/java/com/ibm/mapper/mapper/ssl/json/JsonCipherSuites.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* SonarQube Cryptography Plugin
3-
* Copyright (C) 2024 IBM
3+
* Copyright (C) 2025 IBM
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242
<cyclonedx-maven-plugin.version>2.9.1</cyclonedx-maven-plugin.version>
4343
<checkstyle.version>10.15.0</checkstyle.version>
4444

45-
<sonar.version>10.7.0.96327</sonar.version>
45+
<sonar.version>25.1.0.102122</sonar.version>
4646
<sonar.minVersion>9.14.0.375</sonar.minVersion>
4747
<sonar.plugin.api.version>10.14.0.2599</sonar.plugin.api.version>
4848
<!-- language parser versions -->
49-
<sonar.java.version>8.6.0.37351</sonar.java.version>
50-
<sonar.python.version>4.23.0.17664</sonar.python.version>
49+
<sonar.java.version>8.8.0.37665</sonar.java.version>
50+
<sonar.python.version>4.24.0.18631</sonar.python.version>
5151

5252
<junit.jupiter.version>5.11.4</junit.jupiter.version>
5353

0 commit comments

Comments
 (0)