2020-10-06 01:59:54 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-05-16 03:11:40 +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">
|
2023-04-02 10:15:22 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-10-06 01:59:54 +02:00
|
|
|
|
2023-04-02 10:15:22 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>ch.fritteli</groupId>
|
|
|
|
<artifactId>fritteli-build-parent</artifactId>
|
2023-05-16 03:01:48 +02:00
|
|
|
<version>5.0.0</version>
|
2023-04-02 10:15:22 +02:00
|
|
|
</parent>
|
2020-10-06 01:59:54 +02:00
|
|
|
|
2023-05-16 03:01:48 +02:00
|
|
|
<groupId>ch.fritteli.a-maze-r</groupId>
|
|
|
|
<artifactId>maze-server</artifactId>
|
2023-04-17 00:31:26 +02:00
|
|
|
<version>0.0.7-SNAPSHOT</version>
|
2023-05-16 03:11:40 +02:00
|
|
|
|
2023-05-16 03:01:48 +02:00
|
|
|
<description>The A-Maze-R server, offering a REST endpoint to access the Maze Generator.</description>
|
|
|
|
<url>https://manuel.friedli.info/maze.html</url>
|
2023-05-16 03:11:40 +02:00
|
|
|
<inceptionYear>2022</inceptionYear>
|
2020-10-06 02:09:03 +02:00
|
|
|
|
2023-05-16 03:11:40 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU Affero General Public License</name>
|
|
|
|
<url>https://www.gnu.org/licenses/agpl-3.0.html</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2022-01-27 22:07:00 +01:00
|
|
|
|
2023-04-04 02:37:40 +02:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Manuel Friedli</name>
|
|
|
|
<id>manuel</id>
|
|
|
|
<url>https://www.fritteli.ch/</url>
|
|
|
|
<email>manuel@fritteli.ch</email>
|
|
|
|
<timezone>Europe/Zurich</timezone>
|
|
|
|
<roles>
|
|
|
|
<role>Project Lead</role>
|
|
|
|
<role>Software Architect</role>
|
|
|
|
<role>Software Engineer</role>
|
|
|
|
<role>Operations Manager</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2023-05-16 03:11:40 +02:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://gittr.ch/java/maze-server.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@gittr.ch/java/maze-server.git</developerConnection>
|
|
|
|
<url>https://gittr.ch/java/maze-server</url>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<name>Sonatype Maven Repository - Snapshots</name>
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maze-generator.version>0.1.0</maze-generator.version>
|
|
|
|
<maven-site-plugin.version>4.0.0-M8</maven-site-plugin.version>
|
|
|
|
<undertow.version>2.3.5.Final</undertow.version>
|
|
|
|
</properties>
|
|
|
|
|
2023-04-02 10:15:22 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-05-16 03:01:48 +02:00
|
|
|
<groupId>ch.fritteli.a-maze-r</groupId>
|
|
|
|
<artifactId>maze-generator</artifactId>
|
|
|
|
<version>${maze-generator.version}</version>
|
2023-04-02 10:15:22 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vavr</groupId>
|
|
|
|
<artifactId>vavr</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>undertow-core</artifactId>
|
2023-04-08 09:35:10 +02:00
|
|
|
<version>${undertow.version}</version>
|
2023-04-02 10:15:22 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-10-06 02:09:03 +02:00
|
|
|
|
2023-04-02 10:15:22 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<transformers>
|
2023-05-16 03:11:40 +02:00
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2023-05-16 03:01:48 +02:00
|
|
|
<mainClass>ch.fritteli.maze.server.Main</mainClass>
|
2023-04-02 10:15:22 +02:00
|
|
|
</transformer>
|
|
|
|
</transformers>
|
2023-04-04 02:37:40 +02:00
|
|
|
<filters>
|
|
|
|
<filter>
|
2023-05-16 03:01:48 +02:00
|
|
|
<artifact>ch.fritteli.a-maze-r:maze-generator</artifact>
|
2023-04-04 02:37:40 +02:00
|
|
|
<excludes>
|
|
|
|
<exclude>logback.xml</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2023-04-02 10:15:22 +02:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-04-04 02:37:40 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
2023-05-16 03:11:40 +02:00
|
|
|
<version>${maven-site-plugin.version}</version>
|
2023-04-04 02:37:40 +02:00
|
|
|
</plugin>
|
2023-04-02 10:15:22 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-05-16 03:11:40 +02:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2020-10-06 01:59:54 +02:00
|
|
|
</project>
|