All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.registration.controller.Initialization Maven / Gradle / Ivy

There is a newer version: 1.2.0.2
Show newest version
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