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

net.nemerosa.ontrack.boot.support.DevSettings Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.boot.support;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import java.io.File;

@Component
@Data
@ConfigurationProperties(prefix = "ontrack.dev")
public class DevSettings {

    private File web = new File(System.getProperty("user.dir"), "ontrack-web");
    private String dev = "build/web/dev";
    private String prod = "build/web/prod";
    private String src = "src";
    private String vendor = "vendor";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy