|
38 | 38 | <error-prone.version>2.27.1</error-prone.version>
|
39 | 39 | <google-java-format.version>1.19.2</google-java-format.version>
|
40 | 40 |
|
41 |
| - <cyclonedx-maven-plugin.version>2.8.1</cyclonedx-maven-plugin.version> |
| 41 | + <cyclonedx-maven-plugin.version>2.9.1</cyclonedx-maven-plugin.version> |
42 | 42 | <findsecbugs-plugin.version>1.13.0</findsecbugs-plugin.version>
|
43 |
| - <maven-checkstyle-plugin.version>3.5.0</maven-checkstyle-plugin.version> |
| 43 | + <maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version> |
44 | 44 | <maven-clean-plugin.version>3.4.0</maven-clean-plugin.version>
|
45 | 45 | <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
|
46 |
| - <maven-dependency-plugin.version>3.8.0</maven-dependency-plugin.version> |
| 46 | + <maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version> |
47 | 47 | <maven-deploy-plugin.version>3.1.3</maven-deploy-plugin.version>
|
48 | 48 | <maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version>
|
49 | 49 | <maven-install-plugin.version>3.1.3</maven-install-plugin.version>
|
50 | 50 | <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
|
51 | 51 | <maven-release-plugin.version>3.1.1</maven-release-plugin.version>
|
52 | 52 | <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
|
53 |
| - <maven-site-plugin.version>3.12.1</maven-site-plugin.version> |
54 |
| - <maven-surefire-plugin.version>3.5.0</maven-surefire-plugin.version> |
55 |
| - <spotbugs-maven-plugin.version>4.8.6.3</spotbugs-maven-plugin.version> |
56 |
| - <spotbugs.version>4.8.5</spotbugs.version> |
57 |
| - <spotless-maven-plugin.version>2.43.0</spotless-maven-plugin.version> |
58 |
| - <versions-maven-plugin.version>2.17.1</versions-maven-plugin.version> |
| 53 | + <maven-site-plugin.version>3.21.0</maven-site-plugin.version> |
| 54 | + <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> |
| 55 | + <spotbugs-maven-plugin.version>4.8.6.6</spotbugs-maven-plugin.version> |
| 56 | + <spotbugs.version>4.9.0</spotbugs.version> |
| 57 | + <spotless-maven-plugin.version>2.44.2</spotless-maven-plugin.version> |
| 58 | + <versions-maven-plugin.version>2.18.0</versions-maven-plugin.version> |
59 | 59 | </properties>
|
60 | 60 |
|
61 | 61 | <dependencies>
|
|
159 | 159 | <banDuplicatePomDependencyVersions />
|
160 | 160 | <banDynamicVersions />
|
161 | 161 | <requireActiveProfile>
|
162 |
| - <profiles>druid-26.0.0,druid-30.0.0</profiles> |
| 162 | + <profiles>druid-26.0.0,druid-30.0.0,druid-31.0.1</profiles> |
163 | 163 | <all>false</all>
|
164 | 164 | </requireActiveProfile>
|
165 | 165 | <requireJavaVersion>
|
|
357 | 357 | </dependency>
|
358 | 358 | </dependencies>
|
359 | 359 | </profile>
|
| 360 | + <profile> |
| 361 | + <id>druid-31.0.1</id> |
| 362 | + <properties> |
| 363 | + <java.version>17</java.version> |
| 364 | + <druid.version>31.0.1</druid.version> |
| 365 | + <guava.version>32.0.1-jre</guava.version> |
| 366 | + <guice.version>4.1.0</guice.version> |
| 367 | + <!-- jackson.version in 31.0.1 is actually specified as 2.12.7.20221012 but according to the release notes https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.12#micro-patches that is "only" the BOM which specifies almost all dependencies to be 2.12.7 with the exception of jackson-databind which is at 2.12.7.1: https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7.20221012/jackson-bom-2.12.7.20221012.pom so we override that here --> |
| 368 | + <jackson.version>2.12.7</jackson.version> |
| 369 | + </properties> |
| 370 | + <dependencies> |
| 371 | + <dependency> |
| 372 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 373 | + <artifactId>jackson-databind</artifactId> |
| 374 | + <version>2.12.7.1</version> |
| 375 | + <scope>provided</scope> |
| 376 | + </dependency> |
| 377 | + <dependency> |
| 378 | + <groupId>org.apache.druid</groupId> |
| 379 | + <artifactId>druid-processing</artifactId> |
| 380 | + <version>${druid.version}</version> |
| 381 | + <scope>provided</scope> |
| 382 | + </dependency> |
| 383 | + </dependencies> |
| 384 | + </profile> |
360 | 385 | </profiles>
|
361 | 386 |
|
362 | 387 | </project>
|
0 commit comments