Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pinot-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<type>pom</type>
</dependency>

<dependency>
Expand Down
25 changes: 23 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
<protobuf-dynamic.version>1.0.1</protobuf-dynamic.version>
<localstack-utils.version>0.2.23</localstack-utils.version>
<checker-qual.version>4.1.0</checker-qual.version>
<groovy-all.version>2.4.21</groovy-all.version>
<groovy.version>3.0.25</groovy.version>
<xml-apis.version>2.0.2</xml-apis.version>
<roaring-bitmap.version>1.6.14</roaring-bitmap.version>
<prometheus.jmx-exporter.version>1.5.0</prometheus.jmx-exporter.version>
Expand Down Expand Up @@ -1007,10 +1007,31 @@
<artifactId>checker-qual</artifactId>
<version>${checker-qual.version}</version>
</dependency>
<!-- Groovy 3.x publishes groovy-all as a POM aggregator that pulls in every sub-module.
We exclude groovy-testng/groovy-test-junit5/groovy-test because their transitive TestNG and
JUnit jars collide with Surefire's TestNG fork classpath and cause NoClassDefFoundError on
unrelated test classes. Everything else (groovy core, templates, json, xml, sql, jmx, swing,
ant, cli-picocli, datetime, nio, jsr223, console, etc.) is kept to preserve the runtime
Groovy stdlib surface user transform/filter scripts may rely on from the old 2.4.21 fat jar. -->
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy-all.version}</version>
<version>${groovy.version}</version>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-testng</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-test-junit5</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-test</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
Expand Down
Loading