filequeue/pom.xml

52 lines
2.0 KiB
XML
Raw Normal View History

2022-10-10 01:10:05 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>it.cavallium</groupId>
<artifactId>filequeue</artifactId>
<name>file queue project</name>
2023-10-24 15:49:29 +02:00
<version>3.1.13</version>
2022-10-10 01:10:05 +02:00
<packaging>jar</packaging>
<description>Light weight, high performance, simple, reliable and persistent queue</description>
<modelVersion>4.0.0</modelVersion>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<distributionManagement>
<repository>
<id>mchv-release-distribution</id>
<name>MCHV Release Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</repository>
<snapshotRepository>
<id>mchv-snapshot-distribution</id>
<name>MCHV Snapshot Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2023-10-24 15:47:06 +02:00
<version>3.10.1</version>
2022-10-10 01:10:05 +02:00
<configuration>
2023-10-20 12:52:18 +02:00
<source>21</source>
<target>21</target>
<compilerArgs>--enable-preview</compilerArgs>
2022-10-10 01:10:05 +02:00
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
2022-11-10 02:20:25 +01:00
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
2023-10-20 12:52:18 +02:00
<version>5.9.2</version>
2022-11-10 02:20:25 +01:00
<scope>test</scope>
</dependency>
2022-10-10 01:10:05 +02:00
</dependencies>
</project>