fixed javafx11 executable jar

* added a workaround for the javafx 11 executable jar, this should be removed as soon as the new packager is available
This commit is contained in:
Jannik 2018-10-01 18:17:24 +02:00
parent abbb272bff
commit e6ce1dc464
2 changed files with 9 additions and 1 deletions

View File

@ -121,7 +121,7 @@
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>kellerkinder.HomeFlix.application.Main</mainClass>
<mainClass>kellerkinder.HomeFlix.application.JavaFX11Main</mainClass>
</transformer>
</transformers>
</configuration>

View File

@ -0,0 +1,8 @@
package kellerkinder.HomeFlix.application;
public class JavaFX11Main {
public static void main(String[] args) {
Main.main(args);
}
}