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>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</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>
|
|
|
|
<version>v1.2.1</version>
|
|
|
|
</dependency>
|
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>
|