From cedb0a3c8b99b830709b95798aa1c6b19c5f7c8d Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Sat, 26 Feb 2022 18:01:01 +0100 Subject: [PATCH] Fixed #686 - do not pre-built windows executable anymore --- pom.xml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/pom.xml b/pom.xml index 1b067419b..1ac34c171 100644 --- a/pom.xml +++ b/pom.xml @@ -291,38 +291,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>com.akathist.maven.plugins.launch4j</groupId> - <artifactId>launch4j-maven-plugin</artifactId> - <version>2.1.2</version> - <executions> - <execution> - <id>l4j-clui</id> - <phase>package</phase> - <goals> - <goal>launch4j</goal> - </goals> - <configuration> - <headerType>gui</headerType> - <jar>${project.outputDirectory}/${project.artifactName}.jar</jar> - <outfile>${project.exe}</outfile> - <downloadUrl>https://adoptopenjdk.net/</downloadUrl> - <classPath> - <mainClass>${project.groupId}${project.artifactId}.Main</mainClass> - </classPath> - <jre> - <bundledJre64Bit>false</bundledJre64Bit> - <bundledJreAsFallback>false</bundledJreAsFallback> - <minVersion>11</minVersion> - <jdkPreference>preferJre</jdkPreference> - <runtimeBits>64</runtimeBits> - </jre> - <icon>build/icon.ico</icon> - </configuration> - </execution> - </executions> - </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> -- GitLab