Files
Plinfa/pom.xml
2026-03-23 13:12:59 +01:00

34 lines
1.2 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.derpandaa</groupId>
<artifactId>plinfa</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<qtjambi.version>6.10.0</qtjambi.version>
<jackson.version>3.0.3</jackson.version>
<maven.compiler.source>24</maven.compiler.source>
<maven.compiler.release>24</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>io.qtjambi</groupId>
<artifactId>qtjambi</artifactId>
<version>${qtjambi.version}</version>
</dependency>
<dependency>
<groupId>io.qtjambi</groupId>
<artifactId>qtjambi-native-linux-x64</artifactId>
<version>${qtjambi.version}</version>
</dependency>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>
</project>