def init()

in src/com/epam/edp/buildtool/Python.groovy [33:40]


    def init() {
        this.snapshotsPath = job.getParameterValue("ARTIFACTS_SNAPSHOTS_PATH", "edp-python-snapshots")
        this.releasesPath = job.getParameterValue("ARTIFACTS_RELEASES_PATH", "edp-python-releases")
        this.hostedPath = job.getParameterValue("ARTIFACTS_HOSTED_PATH", "edp-python")
        this.groupPath = job.getParameterValue("ARTIFACTS_PUBLIC_PATH", "edp-python-group")
        this.groupRepository = "${nexus.repositoriesUrl}/${this.groupPath}"
        this.hostedRepository = "${nexus.repositoriesUrl}/${this.hostedPath}"
    }