mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-07-09 17:17:16 +00:00
123 lines
3.7 KiB
XML
123 lines
3.7 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>org.archive</groupId>
|
||
<artifactId>heritrix</artifactId>
|
||
<version>3.16.1-SNAPSHOT</version>
|
||
</parent>
|
||
<groupId>org.archive.heritrix</groupId>
|
||
<artifactId>heritrix-contrib</artifactId>
|
||
<packaging>jar</packaging>
|
||
<name>Heritrix 3: 'contrib' subproject</name>
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.archive.heritrix</groupId>
|
||
<artifactId>heritrix-engine</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.archive.heritrix</groupId>
|
||
<artifactId>heritrix-modules</artifactId>
|
||
<version>${project.version}</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.rabbitmq</groupId>
|
||
<artifactId>amqp-client</artifactId>
|
||
<version>5.33.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.kafka</groupId>
|
||
<artifactId>kafka-clients</artifactId>
|
||
<version>4.3.1</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.lz4</groupId>
|
||
<artifactId>lz4-java</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<!-- Override for CVE‐2025‐12183 and CVE-2025-66566. This should be removed once kafka-clients updates. -->
|
||
<dependency>
|
||
<groupId>at.yawk.lz4</groupId>
|
||
<artifactId>lz4-java</artifactId>
|
||
<version>1.11.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.rethinkdb</groupId>
|
||
<artifactId>rethinkdb-driver</artifactId>
|
||
<version>2.4.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
<version>2.14.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.googlecode.json-simple</groupId>
|
||
<artifactId>json-simple</artifactId>
|
||
<version>1.1.1</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<!-- install source jars to maven repo http://maven.apache.org/plugins/maven-source-plugin/usage.html -->
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-source-plugin</artifactId>
|
||
<version>3.4.0</version>
|
||
<executions>
|
||
<execution>
|
||
<id>attach-sources</id>
|
||
<phase>verify</phase>
|
||
<goals>
|
||
<goal>jar-no-fork</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-assembly-plugin</artifactId>
|
||
<version>3.8.0</version>
|
||
<configuration>
|
||
<descriptors>
|
||
<descriptor>
|
||
src/main/assembly/dist.xml
|
||
</descriptor>
|
||
</descriptors>
|
||
<tarLongFileMode>posix</tarLongFileMode>
|
||
<!-- exclude dist artifacts from maven central release bundle -->
|
||
<attach>false</attach>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>job.assembly.package</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>single</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|
||
|
||
<!-- vim: set ft=xml sw=8 noet: -->
|