|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.exasol</groupId> |
5 | 5 | <artifactId>parquet-io-java</artifactId> |
6 | | - <version>2.0.3</version> |
| 6 | + <version>2.0.4</version> |
7 | 7 | <name>Parquet for Java</name> |
8 | 8 | <description>This project provides a library that reads Parquet files into Java objects.</description> |
9 | 9 | <url>https://github.com/exasol/parquet-io-java/</url> |
| 10 | + <parent> |
| 11 | + <artifactId>parquet-io-java-generated-parent</artifactId> |
| 12 | + <groupId>com.exasol</groupId> |
| 13 | + <version>2.0.4</version> |
| 14 | + <relativePath>pk_generated_parent.pom</relativePath> |
| 15 | + </parent> |
10 | 16 | <properties> |
11 | | - <scala.version>2.13.10</scala.version> |
| 17 | + <scala.version>2.13.11</scala.version> |
12 | 18 | <scala.compat.version>2.13</scala.compat.version> |
13 | | - <mockito.version>5.3.1</mockito.version> |
| 19 | + <mockito.version>5.4.0</mockito.version> |
14 | 20 | </properties> |
15 | | - <distributionManagement> |
16 | | - <snapshotRepository> |
17 | | - <id>ossrh</id> |
18 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
19 | | - </snapshotRepository> |
20 | | - <repository> |
21 | | - <id>ossrh</id> |
22 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
23 | | - </repository> |
24 | | - </distributionManagement> |
25 | 21 | <dependencies> |
26 | 22 | <dependency> |
27 | 23 | <groupId>org.apache.parquet</groupId> |
28 | 24 | <artifactId>parquet-hadoop</artifactId> |
29 | | - <version>1.13.0</version> |
| 25 | + <version>1.13.1</version> |
30 | 26 | </dependency> |
31 | 27 | <dependency> |
32 | 28 | <groupId>org.apache.hadoop</groupId> |
33 | 29 | <artifactId>hadoop-client</artifactId> |
34 | | - <version>3.3.5</version> |
| 30 | + <version>3.3.6</version> |
35 | 31 | <!-- Excluding transitive dependencies with vulnerabilities. --> |
36 | 32 | <exclusions> |
37 | 33 | <exclusion> |
|
101 | 97 | </exclusion> |
102 | 98 | </exclusions> |
103 | 99 | </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.xerial.snappy</groupId> |
| 102 | + <artifactId>snappy-java</artifactId> |
| 103 | + <version>1.1.10.1</version> |
| 104 | + </dependency> |
104 | 105 | <dependency> |
105 | 106 | <groupId>org.scala-lang</groupId> |
106 | 107 | <artifactId>scala-library</artifactId> |
|
115 | 116 | <dependency> |
116 | 117 | <groupId>org.junit.jupiter</groupId> |
117 | 118 | <artifactId>junit-jupiter</artifactId> |
118 | | - <version>5.9.2</version> |
| 119 | + <version>5.9.3</version> |
119 | 120 | <scope>test</scope> |
120 | 121 | </dependency> |
121 | 122 | <dependency> |
|
217 | 218 | <plugin> |
218 | 219 | <groupId>org.itsallcode</groupId> |
219 | 220 | <artifactId>openfasttrace-maven-plugin</artifactId> |
220 | | - <version>1.6.1</version> |
| 221 | + <version>1.6.2</version> |
221 | 222 | <executions> |
222 | 223 | <execution> |
223 | 224 | <id>trace-requirements</id> |
|
244 | 245 | </execution> |
245 | 246 | </executions> |
246 | 247 | </plugin> |
247 | | - <plugin> |
248 | | - <groupId>org.sonatype.ossindex.maven</groupId> |
249 | | - <artifactId>ossindex-maven-plugin</artifactId> |
250 | | - <configuration> |
251 | | - <excludeVulnerabilityIds> |
252 | | - <!-- org.apache.hadoop:hadoop-hdfs-client:jar:3.3.4: CWE-611: Improper Restriction of XML External Entity Reference ('XXE') (8.6); https://ossindex.sonatype.org/vulnerability/sonatype-2022-5732 |
253 | | - No update available --> |
254 | | - <exclude>sonatype-2022-5732</exclude> |
255 | | - </excludeVulnerabilityIds> |
256 | | - </configuration> |
257 | | - </plugin> |
258 | 248 | <plugin> |
259 | 249 | <groupId>org.basepom.maven</groupId> |
260 | 250 | <artifactId>duplicate-finder-maven-plugin</artifactId> |
|
283 | 273 | </plugin> |
284 | 274 | </plugins> |
285 | 275 | </build> |
286 | | - <parent> |
287 | | - <artifactId>parquet-io-java-generated-parent</artifactId> |
288 | | - <groupId>com.exasol</groupId> |
289 | | - <version>2.0.3</version> |
290 | | - <relativePath>pk_generated_parent.pom</relativePath> |
291 | | - </parent> |
292 | 276 | </project> |
0 commit comments