2022-09-17 23:02:17 +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>
|
|
|
|
|
2022-09-18 01:18:39 +03:00
|
|
|
<groupId>ru.redrise</groupId>
|
2022-09-17 23:02:17 +03:00
|
|
|
<name>Tihwin</name>
|
|
|
|
|
|
|
|
<artifactId>Tihwin</artifactId>
|
2023-02-02 00:37:39 +03:00
|
|
|
<version>2.3</version>
|
2022-09-17 23:02:17 +03:00
|
|
|
|
|
|
|
<url>https://github.com/developersu/${project.artifactId}/</url>
|
|
|
|
<description>
|
2022-09-18 01:18:39 +03:00
|
|
|
OPL-compatible PS2 tool for making split files. Sort of ul.cfg manager or USBUtil.
|
2022-09-17 23:02:17 +03:00
|
|
|
</description>
|
|
|
|
<inceptionYear>2022</inceptionYear>
|
|
|
|
<organization>
|
|
|
|
<name>Dmitry Isaenko</name>
|
|
|
|
<url>https://developersu.blogspot.com/</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU General Public License v3</name>
|
|
|
|
<url>http://www.gnu.org/licenses/gpl.txt</url>
|
|
|
|
<distribution>manual</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>developer.su</id>
|
|
|
|
<name>Dmitry Isaenko</name>
|
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
<timezone>+3</timezone>
|
2022-09-18 01:18:39 +03:00
|
|
|
<url>https://redrise.ru/</url>
|
2022-09-17 23:02:17 +03:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.build.timestamp.format>yyyyMMdd.HHmmss</maven.build.timestamp.format>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/developer_su/${project.artifactId}/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.intellij</groupId>
|
|
|
|
<artifactId>forms_rt</artifactId>
|
|
|
|
<version>7.0.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}-${project.version}-${maven.build.timestamp}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources-filtered</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<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>tihwin.Main</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
</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>
|
2022-12-25 07:03:37 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.akathist.maven.plugins.launch4j</groupId>
|
|
|
|
<version>2.2.0</version>
|
|
|
|
<artifactId>launch4j-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>l4j-Tihwin</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>launch4j</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<headerType>gui</headerType>
|
|
|
|
<icon>tw_icon.ico</icon>
|
|
|
|
<outfile>target/Tihwin-${project.version}-${maven.build.timestamp}.exe</outfile>
|
|
|
|
<jar>target/${project.artifactId}-${project.version}-${maven.build.timestamp}.jar</jar>
|
|
|
|
<errTitle>Tihwin</errTitle>
|
|
|
|
<classPath>
|
|
|
|
<mainClass>tihwin.Main</mainClass>
|
|
|
|
<addDependencies>false</addDependencies>
|
|
|
|
<preCp>anything</preCp>
|
|
|
|
</classPath>
|
|
|
|
<jre>
|
|
|
|
<minVersion>1.8.0</minVersion>
|
|
|
|
<path>%JAVA_HOME%;%PATH%</path>
|
|
|
|
</jre>
|
|
|
|
<versionInfo>
|
|
|
|
<fileVersion>${project.version}.0.0</fileVersion>
|
|
|
|
<txtFileVersion>${project.version}</txtFileVersion>
|
|
|
|
<fileDescription>ul.cfg utility</fileDescription>
|
|
|
|
<copyright>GNU General Public License v3, 2022 ${project.organization.name}, Russia</copyright>
|
|
|
|
<productVersion>${project.version}.0.0</productVersion>
|
|
|
|
<txtProductVersion>${project.version}</txtProductVersion>
|
|
|
|
<companyName>${project.organization.name}</companyName>
|
|
|
|
<productName>${project.name}</productName>
|
|
|
|
<internalName>${project.name}</internalName>
|
|
|
|
<originalFilename>${project.name}.exe</originalFilename>
|
|
|
|
</versionInfo>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-09-17 23:02:17 +03:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|