Skip to content

Commit a0e60c4

Browse files
mormigilcursoragent
andcommitted
fix: declare parquet-hadoop and parquet-common test deps in embedded-tests
The new Parquet EXTERN test references org.apache.parquet.hadoop (ParquetWriter, CompressionCodecName) and parquet-common, which were only present transitively. Declare them explicitly so maven-dependency-plugin's analyze goal no longer fails on used-undeclared dependencies. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 857966e commit a0e60c4

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

embedded-tests/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -822,6 +822,18 @@
822822
<version>${parquet.version}</version>
823823
<scope>test</scope>
824824
</dependency>
825+
<dependency>
826+
<groupId>org.apache.parquet</groupId>
827+
<artifactId>parquet-hadoop</artifactId>
828+
<version>${parquet.version}</version>
829+
<scope>test</scope>
830+
</dependency>
831+
<dependency>
832+
<groupId>org.apache.parquet</groupId>
833+
<artifactId>parquet-common</artifactId>
834+
<version>${parquet.version}</version>
835+
<scope>test</scope>
836+
</dependency>
825837
<dependency>
826838
<groupId>com.google.auth</groupId>
827839
<artifactId>google-auth-library-credentials</artifactId>

0 commit comments

Comments
 (0)