2019-05-18 03:37:05 +03: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>
|
|
|
|
|
|
|
|
<groupId>loper</groupId>
|
|
|
|
<name>konogonka</name>
|
|
|
|
|
|
|
|
<artifactId>konogonka</artifactId>
|
2022-08-10 20:20:25 +03:00
|
|
|
<version>0.0.4-SNAPSHOT</version>
|
2019-05-18 03:37:05 +03:00
|
|
|
|
|
|
|
<url>https://github.com/developersu/${project.name}}/</url>
|
|
|
|
<description>
|
2019-08-22 05:57:52 +03:00
|
|
|
NS filesystem multitool
|
2019-05-18 03:37:05 +03:00
|
|
|
</description>
|
|
|
|
<inceptionYear>2019</inceptionYear>
|
|
|
|
<organization>
|
|
|
|
<name>Dmitry Isaenko</name>
|
|
|
|
<url>https://developersu.blogspot.com/</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GPLv3</name>
|
|
|
|
<url>LICENSE</url>
|
|
|
|
<distribution>manual</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>developer.su</id>
|
|
|
|
<name>Dmitry Isaenko</name>
|
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
<timezone>+3</timezone>
|
|
|
|
<url>https://developersu.blogspot.com/</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-07-18 23:08:25 +03:00
|
|
|
<maven.build.timestamp.format>yyyyMMdd.HHmmss</maven.build.timestamp.format>
|
2019-05-18 03:37:05 +03:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/developer_su/${project.artifactId}/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
<!-- openJFX Linux -->
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>linux</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-media</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>linux</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>linux</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-graphics</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>linux</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- openJFX Windows -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>win</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-media</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>win</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>win</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-graphics</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>win</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- openJFX MAC -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>mac</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-media</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>mac</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>mac</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-graphics</artifactId>
|
|
|
|
<version>11</version>
|
|
|
|
<classifier>mac</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-08-10 20:20:25 +03:00
|
|
|
<!-- Local entry of the libKonogonka: replace once deployed to maven central -->
|
2019-05-18 03:37:05 +03:00
|
|
|
<dependency>
|
2022-08-10 20:20:25 +03:00
|
|
|
<groupId>ru.redrise</groupId>
|
|
|
|
<artifactId>libKonogonka</artifactId>
|
|
|
|
<version>0.1</version>
|
2019-05-18 03:37:05 +03:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-08-10 20:20:25 +03:00
|
|
|
|
2019-05-18 03:37:05 +03:00
|
|
|
<!-- Consider removing
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>pl.pragmatists</groupId>
|
|
|
|
<artifactId>JUnitParams</artifactId>
|
|
|
|
<version>1.0.5</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
2022-07-18 23:08:25 +03:00
|
|
|
<finalName>${project.artifactId}-${project.version}-${maven.build.timestamp}</finalName>
|
2022-08-10 20:20:25 +03:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources-filtered</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
2019-05-18 03:37:05 +03:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<!-- Don't generate default JAR without dependencies -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-jar</id>
|
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- Generate JAR with dependencies -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>konogonka.Main</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
2022-07-18 23:08:25 +03:00
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2019-05-18 03:37:05 +03:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
|
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|