io.mosip.registration.controller.Initialization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registration-client Show documentation
Show all versions of registration-client Show documentation
Maven project of MOSIP Registration UI
package io.mosip.registration.controller;
import com.sun.javafx.application.LauncherImpl;
import io.mosip.registration.preloader.ClientPreLoader;
import java.nio.file.Path;
public class Initialization {
public static void main(String[] args) throws Exception {
System.setProperty("java.net.useSystemProxies", "true");
System.setProperty("file.encoding", "UTF-8");
System.setProperty("logback.configurationFile", Path.of("lib", "logback.xml").toFile().getCanonicalPath());
LauncherImpl.launchApplication(ClientApplication.class, ClientPreLoader.class, args);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy