import com.sun.org.apache.xml.internal.security.Init;
import com.sun.org.apache.xml.internal.security.utils.I18n;

import java.util.Locale;

public class Main {
    public static void main(String[] args){
        System.setProperty("com.sun.org.apache.xml.internal.security.resource.config", "resource/config.xml");
        Locale locale = Locale.US;
        I18n.init(locale.getLanguage(), locale.getCountry());
        Init.init();
    }
} 