in src/com/epam/edp/buildtool/Npm.groovy [36:45]
def init() {
this.groupPath = job.getParameterValue("ARTIFACTS_PUBLIC_PATH", "edp-npm-group")
this.hostedPath = job.getParameterValue("ARTIFACTS_HOSTED_PATH", "edp-npm-hosted")
this.releasePath = job.getParameterValue("ARTIFACTS_RELEASE_PATH", "edp-npm-releases")
this.snapshotPath = job.getParameterValue("ARTIFACTS_SNAPSHOT_PATH", "edp-npm-snapshots")
this.hostedRepository = "${nexus.repositoriesUrl}/${hostedPath}/"
this.groupRepository = "${nexus.repositoriesUrl}/${groupPath}/"
this.releaseRepository = "${nexus.repositoriesUrl}/${releasePath}/"
this.snapshotRepository = "${nexus.repositoriesUrl}/${snapshotPath}/"
}