diff --git a/.gitmodules b/.gitmodules index 8d20570a..386c83a1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "Radon"] path = Radon url = git@github.com:GravitLauncher/Radon.git +[submodule "JFoenixParts"] + path = JFoenixParts + url = git@github.com:leshasmlesha/JFoenixParts.git diff --git a/JFoenixParts b/JFoenixParts new file mode 160000 index 00000000..f67c688c --- /dev/null +++ b/JFoenixParts @@ -0,0 +1 @@ +Subproject commit f67c688cc3bb5fdec544e412f4d499600961b2c4 diff --git a/Launcher/build.gradle b/Launcher/build.gradle index 1cd76ea4..c7523ee1 100644 --- a/Launcher/build.gradle +++ b/Launcher/build.gradle @@ -38,6 +38,11 @@ dependencies { pack project(':LauncherAuthlib') + compile group: 'org.openjfx', name: 'javafx-controls', version: '12', classifier: 'win' + compile group: 'org.openjfx', name: 'javafx-graphics', version: '12', classifier: 'win' + compile group: 'org.openjfx', name: 'javafx-base', version: '12', classifier: 'win' + compile group: 'org.openjfx', name: 'javafx-fxml', version: '12', classifier: 'win' + bundle 'com.jfoenixparts:jfoenixparts' bundle 'com.github.oshi:oshi-core:3.13.0' bundle 'de.jensd:fontawesomefx:8.9' bundle 'org.apache.httpcomponents:httpclient:4.5.7' diff --git a/settings.gradle b/settings.gradle index 72971c4c..35287581 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,5 +1,5 @@ rootProject.name = 'GravitLauncher' - +includeBuild 'JFoenixParts' include 'Launcher' include 'Radon' include 'LauncherCore'