2022-07-03 20:12:40 +00: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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>ace-of-shades-2</artifactId>
|
|
|
|
<groupId>nl.andrewl</groupId>
|
2022-07-29 11:22:47 +00:00
|
|
|
<version>1.3.0</version>
|
2022-07-03 20:12:40 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>aos2-core</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2022-07-05 19:49:04 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2022-07-03 20:12:40 +00:00
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.joml/joml -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.joml</groupId>
|
|
|
|
<artifactId>joml</artifactId>
|
|
|
|
<version>1.10.4</version>
|
|
|
|
</dependency>
|
2022-07-05 19:49:04 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.andrewlalis</groupId>
|
|
|
|
<artifactId>record-net</artifactId>
|
2022-07-07 14:51:29 +00:00
|
|
|
<version>v1.3.4</version>
|
2022-07-05 19:49:04 +00:00
|
|
|
</dependency>
|
2022-07-06 18:20:15 +00:00
|
|
|
<!-- https://github.com/OpenHFT/Zero-Allocation-Hashing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.openhft</groupId>
|
|
|
|
<artifactId>zero-allocation-hashing</artifactId>
|
|
|
|
<version>0.15</version>
|
|
|
|
</dependency>
|
2022-07-17 17:37:34 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<version>1.30</version>
|
|
|
|
</dependency>
|
2022-07-07 14:51:29 +00:00
|
|
|
|
2022-07-05 13:51:57 +00:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>5.8.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.8.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-03 20:12:40 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|