maze-server/pom.xml

129 lines
3.5 KiB
XML
Raw Normal View History

2020-10-06 01:59:54 +02: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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ch.fritteli</groupId>
<artifactId>fritteli-build-parent</artifactId>
<version>2.0.4</version>
</parent>
<groupId>ch.fritteli.labyrinth</groupId>
<artifactId>labyrinth-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
2020-10-06 02:09:03 +02:00
<properties>
2023-03-25 08:40:13 +01:00
<logback.version>1.4.6</logback.version>
2023-03-25 11:08:06 +01:00
<lombok.version>1.18.26</lombok.version>
2023-03-25 08:40:13 +01:00
<slf4j.version>2.0.5</slf4j.version>
2023-04-01 00:21:20 +02:00
<java.source.version>17</java.source.version>
<java.target.version>17</java.target.version>
</properties>
2020-10-06 02:09:03 +02:00
<dependencies>
<dependency>
<groupId>ch.fritteli.labyrinth</groupId>
<artifactId>labyrinth-generator</artifactId>
2022-02-02 02:09:25 +01:00
<version>0.0.2</version>
2020-10-06 02:09:03 +02:00
</dependency>
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
2020-10-07 01:27:38 +02:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
2020-10-07 01:27:38 +02:00
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
2022-02-02 02:09:25 +01:00
<version>${logback.version}</version>
2020-10-07 01:27:38 +02:00
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
2020-10-06 02:09:03 +02:00
</dependencies>
2020-10-06 01:59:54 +02:00
<build>
<plugins>
<plugin>
2023-03-25 08:40:13 +01:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
2020-10-06 01:59:54 +02:00
<configuration>
2023-03-25 08:40:13 +01:00
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
2020-10-06 02:09:03 +02:00
<mainClass>ch.fritteli.labyrinth.server.Main</mainClass>
2023-03-25 08:40:13 +01:00
</transformer>
</transformers>
2020-10-06 01:59:54 +02:00
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
2023-03-25 08:40:13 +01:00
<goal>shade</goal>
2020-10-06 01:59:54 +02:00
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:git://gittr.ch/java/labyrinth-server.git</connection>
<developerConnection>scm:git:ssh://git@gittr.ch/java/labyrinth-server.git</developerConnection>
<url>https://gittr.ch/java/labyrinth-server</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>repo.gittr.ch</id>
<name>gittr.ch</name>
<url>https://repo.gittr.ch/releases/</url>
</repository>
<snapshotRepository>
<id>repo.gittr.ch</id>
<name>gittr.ch</name>
<url>https://repo.gittr.ch/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>repo.gittr.ch.releases</id>
<url>https://repo.gittr.ch/releases/</url>
2020-10-06 01:59:54 +02:00
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<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-06 01:59:54 +02:00
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
</project>