2020-06-12 18:36:36 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>common-utils</artifactId>
|
|
|
|
<groupId>org.warp</groupId>
|
2021-06-08 19:18:17 +02:00
|
|
|
<version>1.1.4</version>
|
2020-06-12 18:36:36 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<!-- required for jdk9 -->
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2020-10-01 19:07:17 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2020-10-07 12:26:31 +02:00
|
|
|
<id>mchv-release</id>
|
|
|
|
<name>MCHV Release Apache Maven Packages</name>
|
|
|
|
<url>https://mvn.mchv.eu/repository/mchv</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>mchv-snapshot</id>
|
|
|
|
<name>MCHV Snapshot Apache Maven Packages</name>
|
|
|
|
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
|
2020-10-01 19:07:17 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2020-10-07 12:26:31 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>mchv-release</id>
|
|
|
|
<name>MCHV Apache Release Maven Packages Distribution</name>
|
|
|
|
<url>https://mvn.mchv.eu/repository/mchv</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2020-07-27 12:46:22 +02:00
|
|
|
|
2020-06-12 18:36:36 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2021-05-09 22:56:27 +02:00
|
|
|
<version>5.8.0-M1</version>
|
2020-06-12 18:36:36 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2021-02-20 21:04:58 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.30</version>
|
|
|
|
</dependency>
|
2020-06-12 18:36:36 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.unimi.dsi</groupId>
|
|
|
|
<artifactId>fastutil</artifactId>
|
2021-05-09 22:56:27 +02:00
|
|
|
<version>8.5.4</version>
|
2020-06-12 18:36:36 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-01 19:07:17 +02:00
|
|
|
<groupId>it.cavallium</groupId>
|
2020-06-12 18:36:36 +02:00
|
|
|
<artifactId>concurrent-locks</artifactId>
|
2020-10-16 19:50:30 +02:00
|
|
|
<version>1.0.8</version>
|
2020-06-12 18:36:36 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2021-05-09 22:56:27 +02:00
|
|
|
<version>3.12.0</version>
|
2020-06-12 18:36:36 +02:00
|
|
|
</dependency>
|
2020-10-16 13:09:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>20.1.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-10-16 19:50:30 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2021-04-01 00:30:11 +02:00
|
|
|
<version>30.1.1-jre</version>
|
2020-10-16 19:50:30 +02:00
|
|
|
</dependency>
|
2021-05-07 12:06:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.moshi</groupId>
|
|
|
|
<artifactId>moshi</artifactId>
|
|
|
|
<version>1.12.0</version>
|
|
|
|
</dependency>
|
2021-05-21 00:13:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.zacsweers.moshix</groupId>
|
|
|
|
<artifactId>moshi-records-reflect</artifactId>
|
|
|
|
<version>0.11.0</version>
|
|
|
|
</dependency>
|
2020-06-12 18:36:36 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|