|
57 | 57 | <sonarqube-plugin-api-min.version>9.9.0.65466</sonarqube-plugin-api-min.version> |
58 | 58 |
|
59 | 59 | <!-- Version of the SonarQube APIs used by `creedengo-java-plugin` --> |
60 | | - <sonar.plugin.api.version>11.4.0.2922</sonar.plugin.api.version> |
| 60 | + <sonar.plugin.api.version>13.0.0.3026</sonar.plugin.api.version> |
61 | 61 |
|
62 | 62 | <!-- Version of `sonar-java-plugin` that `creedengo-java-plugin` depends on --> |
63 | | - <!-- last version that all is OK --> |
64 | | - <sonarjava.version>8.9.1.38281</sonarjava.version> |
65 | | - <!-- next version is NOT OK --> |
66 | | -<!-- <sonarjava.version>8.13.0.38826</sonarjava.version>--> |
| 63 | + <!-- LAST version compatible with SonarQube 9.9.0 AND 25.9.0 --> |
| 64 | + <sonarjava.version>8.9.3.40165</sonarjava.version> |
| 65 | + <!-- LAST version compatible with SonarQube 25.9.0 but NOT with 9.9.0 --> |
| 66 | +<!-- <sonarjava.version>8.18.0.40025</sonarjava.version>--> |
67 | 67 |
|
68 | | - <sonar-analyzer-commons.version>2.17.0.3322</sonar-analyzer-commons.version> |
| 68 | + <sonar-analyzer-commons.version>2.18.0.3393</sonar-analyzer-commons.version> |
69 | 69 |
|
70 | 70 | <sonar-packaging.version>1.23.0.740</sonar-packaging.version> |
71 | 71 |
|
72 | | - <junit.jupiter.version>5.12.2</junit.jupiter.version> |
73 | | - |
74 | | - <assertJ.version>3.27.3</assertJ.version> |
75 | | - |
76 | | - <mockito.version>5.17.0</mockito.version> |
77 | | - |
78 | | - <google.re2j>1.8</google.re2j> |
79 | | - |
80 | 72 | <!-- Version of creedengo rules specifications implemented by this plugin --> |
81 | | - <creedengo-rules-specifications.version>2.2.2</creedengo-rules-specifications.version> |
| 73 | + <creedengo-rules-specifications.version>2.5.0</creedengo-rules-specifications.version> |
82 | 74 |
|
83 | 75 | <!-- URL of the Maven repository where sonarqube will be downloaded --> |
84 | 76 | <test-it.orchestrator.artifactory.url>https://repo1.maven.org/maven2</test-it.orchestrator.artifactory.url> |
|
97 | 89 | <!-- <test-it.sonarqube.version>25.2.0.102705</test-it.sonarqube.version>--> |
98 | 90 | <!-- <test-it.sonarqube.version>25.3.0.104237</test-it.sonarqube.version>--> |
99 | 91 | <!-- <test-it.sonarqube.version>25.4.0.105899</test-it.sonarqube.version>--> |
100 | | - <test-it.sonarqube.version>25.5.0.107428</test-it.sonarqube.version> |
| 92 | +<!-- <test-it.sonarqube.version>25.5.0.107428</test-it.sonarqube.version>--> |
| 93 | + <test-it.sonarqube.version>25.9.0.112764</test-it.sonarqube.version> |
101 | 94 |
|
102 | 95 | <!-- Version of `sonar-java-plugin` used by integration tests (you can override this value to perform matrix compatibility tests) --> |
103 | 96 | <test-it.sonarjava.version>${sonarjava.version}</test-it.sonarjava.version> |
|
139 | 132 | <dependency> |
140 | 133 | <groupId>com.google.re2j</groupId> |
141 | 134 | <artifactId>re2j</artifactId> |
142 | | - <version>${google.re2j}</version> |
| 135 | + <version>1.8</version> |
143 | 136 | </dependency> |
144 | 137 |
|
145 | 138 | <dependency> |
|
161 | 154 | <dependency> |
162 | 155 | <groupId>org.junit.jupiter</groupId> |
163 | 156 | <artifactId>junit-jupiter</artifactId> |
164 | | - <version>${junit.jupiter.version}</version> |
| 157 | + <version>5.13.4</version> |
165 | 158 | <scope>test</scope> |
166 | 159 | </dependency> |
167 | 160 |
|
168 | 161 | <dependency> |
169 | 162 | <groupId>org.assertj</groupId> |
170 | 163 | <artifactId>assertj-core</artifactId> |
171 | | - <version>${assertJ.version}</version> |
| 164 | + <version>3.27.4</version> |
172 | 165 | <scope>test</scope> |
173 | 166 | </dependency> |
174 | 167 |
|
175 | 168 | <dependency> |
176 | 169 | <groupId>org.mockito</groupId> |
177 | 170 | <artifactId>mockito-junit-jupiter</artifactId> |
178 | | - <version>${mockito.version}</version> |
| 171 | + <version>5.19.0</version> |
179 | 172 | <scope>test</scope> |
180 | 173 | </dependency> |
181 | 174 |
|
|
190 | 183 | <dependency> |
191 | 184 | <groupId>org.sonarsource.orchestrator</groupId> |
192 | 185 | <artifactId>sonar-orchestrator-junit5</artifactId> |
193 | | - <version>5.6.1.2597</version> |
194 | | - <scope>test</scope> |
195 | | - </dependency> |
196 | | - <dependency> |
197 | | - <groupId>org.sonarsource.java</groupId> |
198 | | - <artifactId>test-classpath-reader</artifactId> |
199 | | - <version>8.8.0.37665</version> |
| 186 | + <version>5.6.2.2625</version> |
200 | 187 | <scope>test</scope> |
201 | 188 | </dependency> |
202 | 189 | <dependency> |
|
214 | 201 | <dependency> |
215 | 202 | <groupId>ch.qos.logback</groupId> |
216 | 203 | <artifactId>logback-classic</artifactId> |
217 | | - <version>1.5.6</version> |
| 204 | + <version>1.5.18</version> |
218 | 205 | <scope>test</scope> |
219 | 206 | </dependency> |
220 | 207 | <dependency> |
221 | 208 | <groupId>org.projectlombok</groupId> |
222 | 209 | <artifactId>lombok</artifactId> |
223 | | - <version>1.18.36</version> |
| 210 | + <version>1.18.40</version> |
224 | 211 | <scope>test</scope> |
225 | 212 | </dependency> |
226 | 213 | </dependencies> |
|
0 commit comments