Skip to content

Commit

Permalink
quick fix attempt for javafx dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eviltester committed Jan 6, 2022
1 parent e645edc commit 95ee031
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx</artifactId>
<version>15.0.1</version>
<type>pom</type>
</dependency>
<!--JavaFX-controls-->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>15.0.1</version>
</dependency>
<!--
<dependency>
<groupId>org.controlsfx</groupId>
Expand Down Expand Up @@ -61,7 +73,8 @@
</descriptorRefs>
<archive>
<manifest>
<mainClass>uk.co.compendiumdev.javafortesters.MainGui</mainClass>
<!--<mainClass>uk.co.compendiumdev.javafortesters.MainGui</mainClass>-->
<mainClass>uk.co.compendiumdev.javafortesters.Launcher</mainClass>
</manifest>
</archive>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package uk.co.compendiumdev.javafortesters;

public class Launcher {
public static void main(String[] args) {
MainGui.main(args);
}
}

0 comments on commit 95ee031

Please sign in to comment.