From aad3e1bf5648a6deded1952b19db40906390455d Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Thu, 12 Aug 2021 10:20:05 +0200 Subject: [client] Fix FlatLaf on Windows JRE-8 Forcing the version of maven-assembly-plugin to 3.0 seems to mess up the build process of the fat jar. The Java 9+ specific classes from the META-INF/versions directory get copied to the root of the jar, replacing the JRE-8 specific classes. This leads to unloadable classes on Windows with JRE-8. Also we need to add the Multi-Release property to MANIFEST.MF to make sure the modern JRE-9+ classes get loaded on newer JREs, so all the additional features get used. --- dozentenmodul/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dozentenmodul/pom.xml') diff --git a/dozentenmodul/pom.xml b/dozentenmodul/pom.xml index 45b6384e..abcfca2a 100755 --- a/dozentenmodul/pom.xml +++ b/dozentenmodul/pom.xml @@ -93,7 +93,6 @@ org.apache.maven.plugins maven-assembly-plugin - 3.0.0 package @@ -113,6 +112,7 @@ ${build.time} ${revision.branch} ${revision.version} + true -- cgit v1.2.3-55-g7522