7068558137
- downloadFileWithSmartProxy/getWithSmartProxy now rotate the proxy request across api.zern.cc -> api.zernmc.ru -> api.zernmc.online -> api.pl.zern.cc -> api.swe.zern.cc instead of retrying the same single proxy base, so a region-specific CDN connection reset no longer burns every retry. - DomainSelector registers every candidate/mirror domain as a fallback proxy base at startup; mirrors list stays in sync with LAUNCHER_MIRRORS. - Downloads write to <target>.part and are moved into place atomically on success, so an interrupted transfer can no longer leave a corrupt partial file that later 'file exists' checks treat as installed. - Bump version to 1.1.0.0 (revision 1.1.0, hotfix 0).
185 lines
7.4 KiB
XML
185 lines
7.4 KiB
XML
<?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>me.sashegdev</groupId>
|
|
<artifactId>ZernMCLauncher</artifactId>
|
|
<version>${revision}</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>ZernMC Launcher Parent</name>
|
|
<description>ZernMC Launcher - Multi-module project</description>
|
|
|
|
<modules>
|
|
<module>bootstrap</module>
|
|
<module>diag</module>
|
|
<module>launcher</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<revision>1.1.0</revision>
|
|
<hotfix>0</hotfix>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.organization.name>ZernMC</project.organization.name>
|
|
<project.inceptionYear>2026</project.inceptionYear>
|
|
<project.description>ZernMC Launcher - Multi-module project</project.description>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.14</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.15.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20231013</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.fusesource.jansi</groupId>
|
|
<artifactId>jansi</artifactId>
|
|
<version>2.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jline</groupId>
|
|
<artifactId>jline</artifactId>
|
|
<version>3.24.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.tongfei</groupId>
|
|
<artifactId>progressbar</artifactId>
|
|
<version>0.9.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.15.1</version>
|
|
</dependency>
|
|
<!-- JavaFX for Windows -->
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-controls</artifactId>
|
|
<version>23.0.1</version>
|
|
<classifier>win</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-web</artifactId>
|
|
<version>23.0.1</version>
|
|
<classifier>win</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-graphics</artifactId>
|
|
<version>23.0.1</version>
|
|
<classifier>win</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-base</artifactId>
|
|
<version>23.0.1</version>
|
|
<classifier>win</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dnsjava</groupId>
|
|
<artifactId>dnsjava</artifactId>
|
|
<version>3.6.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-media</artifactId>
|
|
<version>23.0.1</version>
|
|
<classifier>win</classifier>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
<version>1.6.0</version>
|
|
<configuration>
|
|
<updatePomFile>true</updatePomFile>
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>flatten</id>
|
|
<phase>process-resources</phase>
|
|
<goals><goal>flatten</goal></goals>
|
|
</execution>
|
|
<execution>
|
|
<id>flatten-clean</id>
|
|
<phase>clean</phase>
|
|
<goals><goal>clean</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.2.3</version>
|
|
</plugin>
|
|
|
|
<!-- Shade Plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputFile>../../server/builds/ZernMCLauncher.jar</outputFile>
|
|
<transformers>
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<mainClass>${mainClass}</mainClass>
|
|
<manifestEntries>
|
|
<Implementation-Version>${project.version}.${hotfix}</Implementation-Version>
|
|
<Implementation-Title>ZernMC Launcher</Implementation-Title>
|
|
<Implementation-Vendor>SashegDev</Implementation-Vendor>
|
|
<Implementation-Description>Samopisnui Minecraft-launcher. by SashegDev</Implementation-Description>
|
|
<Implementation-URL>https://github.com/SashegDev/launcher</Implementation-URL>
|
|
</manifestEntries>
|
|
</transformer>
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<profiles>
|
|
<profile>
|
|
<id>global</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<launcher.title>ZernMC Launcher</launcher.title>
|
|
<server.url>http://87.120.187.36:1582</server.url>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</project> |