Skip to content

Commit 73b99b7

Browse files
authored
Merge branch 'eugenp:master' into master
2 parents 0287c9e + 50b2ede commit 73b99b7

File tree

44 files changed

+1869
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1869
-10
lines changed

apache-libraries-3/pom.xml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,40 @@
7070
<artifactId>camel-graphql</artifactId>
7171
<version>${camel.version}</version>
7272
</dependency>
73+
<dependency>
74+
<groupId>org.apache.parquet</groupId>
75+
<artifactId>parquet-avro</artifactId>
76+
<version>${parquet.version}</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.apache.parquet</groupId>
80+
<artifactId>parquet-hadoop</artifactId>
81+
<version>${parquet.version}</version>
82+
</dependency>
7383
</dependencies>
7484

85+
<build>
86+
<plugins>
87+
<plugin>
88+
<artifactId>maven-compiler-plugin</artifactId>
89+
<version>${maven.compiler.plugin}</version>
90+
<configuration>
91+
<release>${maven.compiler.source}</release>
92+
</configuration>
93+
</plugin>
94+
</plugins>
95+
</build>
96+
7597
<properties>
7698
<accumulo.core>2.1.3</accumulo.core>
99+
<maven.compiler.plugin>3.14.0</maven.compiler.plugin>
77100
<maven.compiler.source>17</maven.compiler.source>
78101
<maven.compiler.target>17</maven.compiler.target>
79102
<avro.version>1.11.3</avro.version>
80103
<json-unit-assertj.version>3.5.0</json-unit-assertj.version>
81104
<graphql.version>23.1</graphql.version>
82105
<camel.version>4.11.0</camel.version>
106+
<parquet.version>1.16.0</parquet.version>
83107
</properties>
84108

85-
</project>
109+
</project>

0 commit comments

Comments
 (0)