Checksums
MD5
|
04d4de8a763c205f90004962b0a4bc8c
|
SHA1
|
c39ca2687d11fb4cf73359b65a12167b92c62e6e
|
SHA256
|
489e736778532ae7f8202fd271947258a63e27a5d18f154092241749e35156b6
|
SHA512
|
3a3153fbfddec8f79c29045faa7ecf934bb105f3cb0819813f162fe337342ce73a067c7404c5969c196f9a8fb746ffb9a684fb21d9bbc0c05546b434ae1e99b8
|
POM
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gen.maze</groupId>
<artifactId>maze-gen</artifactId>
<name>maze-gen</name>
<version>1.0.3</version>
<build>
<extensions>
<extension>
<groupId>io.packagecloud.maven.wagon</groupId>
<artifactId>maven-packagecloud-wagon</artifactId>
<version>0.0.6</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>21</source>
<target>21</target>
<compilerArgs>--enable-preview</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>com.gen.maze.FXLauncher</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>package-cloud</id>
<distributionManagement>
<repository>
<id>packagecloud.release</id>
<url>packagecloud+https://packagecloud.io/gchapidze/release</url>
</repository>
<snapshotRepository>
<id>packagecloud.snapshot</id>
<url>packagecloud+https://packagecloud.io/gchapidze/snapshot</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>