mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-11 13:38:23 +02:00
fixed the main javafx application problem
This commit is contained in:
@@ -35,5 +35,5 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group 'ninja.javafx'
|
group 'ninja.javafx'
|
||||||
version '0.9.1-SNAPSHOT'
|
version '0.9.2-SNAPSHOT'
|
||||||
mainClassName = 'ninja.javafx.smartcsv.fx.SmartCSV'
|
mainClassName = 'ninja.javafx.smartcsv.Main'
|
||||||
|
|||||||
10
src/main/java/ninja/javafx/smartcsv/Main.java
Normal file
10
src/main/java/ninja/javafx/smartcsv/Main.java
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
package ninja.javafx.smartcsv;
|
||||||
|
|
||||||
|
import ninja.javafx.smartcsv.fx.SmartCSV;
|
||||||
|
|
||||||
|
public class Main {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
// workaround for module problem
|
||||||
|
SmartCSV.main(args);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user