2020-09-30 01:22:26 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-10-06 02:08:39 +02:00
|
|
|
<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">
|
2020-09-30 01:22:26 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ch.fritteli</groupId>
|
|
|
|
<artifactId>fritteli-build-parent</artifactId>
|
2020-10-04 01:18:07 +02:00
|
|
|
<version>2.0.4</version>
|
2020-09-30 01:22:26 +02:00
|
|
|
</parent>
|
2022-01-27 22:04:07 +01:00
|
|
|
|
2020-10-04 23:12:29 +02:00
|
|
|
<groupId>ch.fritteli.labyrinth</groupId>
|
2020-10-06 01:41:20 +02:00
|
|
|
<artifactId>labyrinth-generator</artifactId>
|
2020-10-06 01:55:58 +02:00
|
|
|
<version>0.0.2-SNAPSHOT</version>
|
2022-01-27 22:04:07 +01:00
|
|
|
|
|
|
|
<properties>
|
2022-02-02 00:44:23 +01:00
|
|
|
<logback.version>1.2.10</logback.version>
|
2022-01-27 22:04:07 +01:00
|
|
|
<pdfbox.version>2.0.25</pdfbox.version>
|
2022-02-02 00:44:23 +01:00
|
|
|
<slf4j.version>1.7.35</slf4j.version>
|
2022-01-27 22:04:07 +01:00
|
|
|
</properties>
|
|
|
|
|
2020-09-30 01:22:26 +02:00
|
|
|
<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>
|
2020-10-03 02:31:33 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
|
|
<artifactId>pdfbox</artifactId>
|
2022-01-27 22:04:07 +01:00
|
|
|
<version>${pdfbox.version}</version>
|
2020-10-03 02:31:33 +02:00
|
|
|
</dependency>
|
2022-02-02 00:44:23 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>${logback.version}</version>
|
|
|
|
</dependency>
|
2020-09-30 21:54:06 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
</dependency>
|
2020-09-30 01:22:26 +02:00
|
|
|
</dependencies>
|
2020-10-05 20:39:59 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2020-10-06 01:47:05 +02:00
|
|
|
<mainClass>ch.fritteli.labyrinth.generator.Main</mainClass>
|
2020-10-05 20:39:59 +02:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-10-06 01:51:19 +02:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://gittr.ch/java/labyrinth-generator.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@gittr.ch/java/labyrinth-generator.git</developerConnection>
|
|
|
|
<url>https://gittr.ch/java/labyrinth-generator</url>
|
2020-10-06 01:55:58 +02:00
|
|
|
<tag>HEAD</tag>
|
2020-10-06 01:51:19 +02:00
|
|
|
</scm>
|
2020-10-04 01:17:13 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2020-10-05 00:07:48 +02:00
|
|
|
<id>repo.gittr.ch</id>
|
|
|
|
<name>gittr.ch</name>
|
2020-10-04 01:17:13 +02:00
|
|
|
<url>https://repo.gittr.ch/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
2020-10-05 00:07:48 +02:00
|
|
|
<id>repo.gittr.ch</id>
|
|
|
|
<name>gittr.ch</name>
|
2020-10-04 01:17:13 +02:00
|
|
|
<url>https://repo.gittr.ch/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2022-01-27 22:04:07 +01:00
|
|
|
<id>repo.gittr.ch.releases</id>
|
|
|
|
<url>https://repo.gittr.ch/releases/</url>
|
2020-10-04 01:17:13 +02:00
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</releases>
|
2022-01-27 22:04:07 +01:00
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>repo.gittr.ch.snapshots</id>
|
|
|
|
<url>https://repo.gittr.ch/snapshots/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</releases>
|
2020-10-04 01:17:13 +02:00
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2020-09-30 01:22:26 +02:00
|
|
|
</project>
|