@@ -9,11 +9,26 @@ | |||
| 9 | 9 | <ignoreVersion>3.0ea8</ignoreVersion> | |
| 10 | 10 | </ignoreVersions> | |
| 11 | 11 | </rule> | |
| 12 | + <rule groupId="args4j" artifactId="args4j" comparisonMethod="maven"> | ||
| 13 | + <ignoreVersions> | ||
| 14 | + <!-- | ||
| 15 | + As of version 2.37, Args4j requires Java 11. | ||
| 16 | + We cannot upgrade past 2.33 while we still support Java 8. | ||
| 17 | + --> | ||
| 18 | + <ignoreVersion type="regex">^(?!2\.33).*</ignoreVersion> | ||
| 19 | + </ignoreVersions> | ||
| 20 | + </rule> | ||
| 12 | 21 | <rule groupId="ch.qos.logback" artifactId="*" comparisonMethod="maven"> | |
| 13 | 22 | <ignoreVersions> | |
| 14 | 23 | <ignoreVersion type="regex">.*-(alpha|beta|rc)-?[0-9]+</ignoreVersion> | |
| 15 | - <!-- NB: logback-classic does not ship an SLF4J binding after 1.2.x. --> | ||
| 16 | - <ignoreVersion type="regex">1\.[34].*</ignoreVersion> | ||
| 24 | + <!-- | ||
| 25 | + As of version 1.4.0, Logback requires Java 11. | ||
| 26 | + We cannot upgrade past 1.3.x while we still support Java 8. | ||
| 27 | + Note: logback-classic 1.2.13 is the last version to use SLF4J v1; | ||
| 28 | + logback-classic 1.3.0+ uses SLF4J v2, which works differently; see: | ||
| 29 | + https://www.slf4j.org/faq.html#changesInVersion200 | ||
| 30 | + --> | ||
| 31 | + <ignoreVersion type="regex">^(?!1\.3\.).*</ignoreVersion> | ||
| 17 | 32 | </ignoreVersions> | |
| 18 | 33 | </rule> | |
| 19 | 34 | <rule groupId="com.fasterxml.jackson.core" artifactId="*" comparisonMethod="maven"> | |
@@ -36,6 +51,15 @@ | |||
| 36 | 51 | <ignoreVersion type="regex">.*-kohsuke-?[0-9]+</ignoreVersion> | |
| 37 | 52 | </ignoreVersions> | |
| 38 | 53 | </rule> | |
| 54 | + <rule groupId="com.fifesoft" artifactId="languagesupport" comparisonMethod="maven"> | ||
| 55 | + <ignoreVersions> | ||
| 56 | + <!-- | ||
| 57 | + As of version 3.4.0, Fifesoft LanguageSupport requires Java 11. | ||
| 58 | + We cannot upgrade past 3.3.x while we still support Java 8. | ||
| 59 | + --> | ||
| 60 | + <ignoreVersion type="regex">^(?!3\.3\.).*</ignoreVersion> | ||
| 61 | + </ignoreVersions> | ||
| 62 | + </rule> | ||
| 39 | 63 | <rule groupId="com.miglayout" artifactId="*" comparisonMethod="maven"> | |
| 40 | 64 | <ignoreVersions> | |
| 41 | 65 | <!-- | |
@@ -136,6 +160,20 @@ | |||
| 136 | 160 | <rule groupId="org.apache.groovy" artifactId="*" comparisonMethod="maven"> | |
| 137 | 161 | <ignoreVersions> | |
| 138 | 162 | <ignoreVersion type="regex">.*-(alpha|beta|rc)-?[0-9]+</ignoreVersion> | |
| 163 | + <!-- | ||
| 164 | + As of version 5, Groovy requires Java 11. | ||
| 165 | + We cannot upgrade past 4.x while we still support Java 8. | ||
| 166 | + --> | ||
| 167 | + <ignoreVersion type="regex">^(?!4\.).*</ignoreVersion> | ||
| 168 | + </ignoreVersions> | ||
| 169 | + </rule> | ||
| 170 | + <rule groupId="org.apache.jackrabbit" artifactId="jackrabbit-webdav" comparisonMethod="maven"> | ||
| 171 | + <ignoreVersions> | ||
| 172 | + <!-- | ||
| 173 | + As of version 2.21.23, Jackrabbit WebDAV requires Java 11. | ||
| 174 | + We cannot upgrade past 2.21.22 while we still support Java 8. | ||
| 175 | + --> | ||
| 176 | + <ignoreVersion type="regex">^(?!2\.21\.22).*</ignoreVersion> | ||
| 139 | 177 | </ignoreVersions> | |
| 140 | 178 | </rule> | |
| 141 | 179 | <rule groupId="org.apache.logging.log4j" artifactId="*" comparisonMethod="maven"> | |
@@ -148,9 +186,14 @@ | |||
| 148 | 186 | <ignoreVersion type="regex">.*-(alpha|beta|rc)-?[0-9]+</ignoreVersion> | |
| 149 | 187 | </ignoreVersions> | |
| 150 | 188 | </rule> | |
| 151 | - <rule groupId="org.eclipse.collections" artifactId="eclipse-collections" comparisonMethod="maven"> | ||
| 189 | + <rule groupId="org.eclipse.collections" artifactId="*" comparisonMethod="maven"> | ||
| 152 | 190 | <ignoreVersions> | |
| 153 | 191 | <ignoreVersion type="regex">.*\.M[0-9]+</ignoreVersion> | |
| 192 | + <!-- | ||
| 193 | + As of version 12, Eclipse Collections requires Java 11. | ||
| 194 | + We cannot upgrade past 11.x while we still support Java 8. | ||
| 195 | + --> | ||
| 196 | + <ignoreVersion type="regex">^(?!11\.).*</ignoreVersion> | ||
| 154 | 197 | </ignoreVersions> | |
| 155 | 198 | </rule> | |
| 156 | 199 | <rule groupId="org.eclipse.jetty" artifactId="jetty-*" comparisonMethod="maven"> | |
@@ -164,6 +207,15 @@ | |||
| 164 | 207 | <ignoreVersion type="regex">.*\.RC[0-9]+</ignoreVersion> | |
| 165 | 208 | </ignoreVersions> | |
| 166 | 209 | </rule> | |
| 210 | + <rule groupId="org.ejml" artifactId="*" comparisonMethod="maven"> | ||
| 211 | + <ignoreVersions> | ||
| 212 | + <!-- | ||
| 213 | + As of version 1.42, EJML requires Java 11. | ||
| 214 | + We cannot upgrade past 1.41 while we still support Java 8. | ||
| 215 | + --> | ||
| 216 | + <ignoreVersion type="regex">^(?!1\.41).*</ignoreVersion> | ||
| 217 | + </ignoreVersions> | ||
| 218 | + </rule> | ||
| 167 | 219 | <rule groupId="org.janelia" artifactId="*" comparisonMethod="maven"> | |
| 168 | 220 | <ignoreVersions> | |
| 169 | 221 | <ignoreVersion type="regex">.*-(alpha|beta|rc)-?[0-9]+</ignoreVersion> | |
@@ -188,14 +240,46 @@ | |||
| 188 | 240 | <ignoreVersion type="regex">^(?!1\.4\.).*</ignoreVersion> | |
| 189 | 241 | </ignoreVersions> | |
| 190 | 242 | </rule> | |
| 243 | + <rule groupId="org.jmockit" artifactId="jmockit" comparisonMethod="maven"> | ||
| 244 | + <ignoreVersions> | ||
| 245 | + <!-- | ||
| 246 | + As of version 1.50, JMockit requires Java 17. | ||
| 247 | + We cannot upgrade past 1.49 while we still support Java 8. | ||
| 248 | + --> | ||
| 249 | + <ignoreVersion type="regex">^(?!1\.49).*</ignoreVersion> | ||
| 250 | + </ignoreVersions> | ||
| 251 | + </rule> | ||
| 252 | + <rule groupId="org.morphonets" artifactId="SNT" comparisonMethod="maven"> | ||
| 253 | + <ignoreVersions> | ||
| 254 | + <ignoreVersion type="regex">.*-pre.*</ignoreVersion> | ||
| 255 | + </ignoreVersions> | ||
| 256 | + </rule> | ||
| 257 | + <rule groupId="org.ojalgo" artifactId="ojalgo" comparisonMethod="maven"> | ||
| 258 | + <ignoreVersions> | ||
| 259 | + <!-- | ||
| 260 | + As of version 52.0.0, ojAlgo requires Java 11. | ||
| 261 | + We cannot upgrade past 51.x while we still support Java 8. | ||
| 262 | + --> | ||
| 263 | + <ignoreVersion type="regex">^(?!51\.).*</ignoreVersion> | ||
| 264 | + </ignoreVersions> | ||
| 265 | + </rule> | ||
| 266 | + <rule groupId="org.openmicroscopy" artifactId="omero-gateway" comparisonMethod="maven"> | ||
| 267 | + <ignoreVersions> | ||
| 268 | + <!-- | ||
| 269 | + As of version 5.10.0, OMERO Gateway requires Java 11. | ||
| 270 | + We cannot upgrade past 5.9.x while we still support Java 8. | ||
| 271 | + --> | ||
| 272 | + <ignoreVersion type="regex">^(?!5\.9\.).*</ignoreVersion> | ||
| 273 | + </ignoreVersions> | ||
| 274 | + </rule> | ||
| 191 | 275 | <rule groupId="org.junit.jupiter" artifactId="*" comparisonMethod="maven"> | |
| 192 | 276 | <ignoreVersions> | |
| 193 | 277 | <ignoreVersion type="regex">.*-(alpha|beta|rc|RC|M)-?[0-9]+</ignoreVersion> | |
| 194 | 278 | </ignoreVersions> | |
| 195 | 279 | </rule> | |
| 196 | 280 | <rule groupId="org.junit.vintage" artifactId="*" comparisonMethod="maven"> | |
| 197 | 281 | <ignoreVersions> | |
| 198 | - <ignoreVersion type="regex">.*-(alpha|beta|rc|M)-?[0-9]+</ignoreVersion> | ||
| 282 | + <ignoreVersion type="regex">.*-(alpha|beta|rc|RC|M)-?[0-9]+</ignoreVersion> | ||
| 199 | 283 | </ignoreVersions> | |
| 200 | 284 | </rule> | |
| 201 | 285 | <rule groupId="org.mockito" artifactId="mockito-core" comparisonMethod="maven"> | |
@@ -207,6 +291,16 @@ | |||
| 207 | 291 | <ignoreVersion type="regex">^(?!4\.).*</ignoreVersion> | |
| 208 | 292 | </ignoreVersions> | |
| 209 | 293 | </rule> | |
| 294 | + <rule groupId="org.openjfx" artifactId="javafx-*" comparisonMethod="maven"> | ||
| 295 | + <ignoreVersions> | ||
| 296 | + <ignoreVersion type="regex">.*-ea.*</ignoreVersion> | ||
| 297 | + <!-- | ||
| 298 | + As of version 24, OpenJFX requires Java 22. | ||
| 299 | + We cannot upgrade past 23.x while we still support Java 21. | ||
| 300 | + --> | ||
| 301 | + <ignoreVersion type="regex">^(?!23\.).*</ignoreVersion> | ||
| 302 | + </ignoreVersions> | ||
| 303 | + </rule> | ||
| 210 | 304 | <rule groupId="org.openmicroscopy" artifactId="*" comparisonMethod="maven"> | |
| 211 | 305 | <ignoreVersions> | |
| 212 | 306 | <ignoreVersion type="regex">.*-m[0-9]+</ignoreVersion> | |
0 commit comments