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

org.sitoolkit.wt.infra.SitRepository Maven / Gradle / Ivy

There is a newer version: 2.3
Show newest version
package org.sitoolkit.wt.infra;

import org.apache.commons.lang3.SystemUtils;

public class SitRepository {

    public SitRepository() {
    }

    public static String getRepositoryPath() {

        if (SystemUtils.IS_OS_WINDOWS) {
            return "C:\\ProgramData\\sitoolkit\\repository";
        } else {
            return System.getProperty("user.home") + "/.sitoolkit/repository";
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy