[maven-release-plugin] prepare release v0.1.0
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Manuel Friedli 2023-05-16 03:16:34 +02:00
parent 90088536ed
commit d8caae1437
Signed by: manuel
GPG key ID: 41D08ABA75634DA1

10
pom.xml
View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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">
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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
@ -11,7 +10,7 @@
<groupId>ch.fritteli.a-maze-r</groupId> <groupId>ch.fritteli.a-maze-r</groupId>
<artifactId>maze-server</artifactId> <artifactId>maze-server</artifactId>
<version>0.0.7-SNAPSHOT</version> <version>0.1.0</version>
<description>The A-Maze-R server, offering a REST endpoint to access the Maze Generator.</description> <description>The A-Maze-R server, offering a REST endpoint to access the Maze Generator.</description>
<url>https://manuel.friedli.info/maze.html</url> <url>https://manuel.friedli.info/maze.html</url>
@ -44,7 +43,7 @@
<connection>scm:git:https://gittr.ch/java/maze-server.git</connection> <connection>scm:git:https://gittr.ch/java/maze-server.git</connection>
<developerConnection>scm:git:ssh://git@gittr.ch/java/maze-server.git</developerConnection> <developerConnection>scm:git:ssh://git@gittr.ch/java/maze-server.git</developerConnection>
<url>https://gittr.ch/java/maze-server</url> <url>https://gittr.ch/java/maze-server</url>
<tag>HEAD</tag> <tag>v0.1.0</tag>
</scm> </scm>
<distributionManagement> <distributionManagement>
@ -105,8 +104,7 @@
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<configuration> <configuration>
<transformers> <transformers>
<transformer <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>ch.fritteli.maze.server.Main</mainClass> <mainClass>ch.fritteli.maze.server.Main</mainClass>
</transformer> </transformer>
</transformers> </transformers>