Manuel Friedli
fd38b141a1
All checks were successful
continuous-integration/drone/push Build is passing
65 lines
1.7 KiB
XML
65 lines
1.7 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>ch.fritteli</groupId>
|
|
<artifactId>fritteli-build-parent</artifactId>
|
|
<version>2.0.4</version>
|
|
</parent>
|
|
<groupId>ch.fritteli</groupId>
|
|
<artifactId>labyrinth</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.vavr</groupId>
|
|
<artifactId>vavr</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>2.0.20</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>gittr.ch</id>
|
|
<name>gittr</name>
|
|
<url>https://repo.gittr.ch/releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>gittr.ch</id>
|
|
<name>gittr</name>
|
|
<url>https://repo.gittr.ch/snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
<repositories>
|
|
<repository>
|
|
<id>repo.gittr.ch</id>
|
|
<url>https://repo.gittr.ch/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|