do not allow the publication of duplicated packages

This commit is contained in:
Rui Lopes 2017-10-28 13:54:12 +01:00
parent 39467f57bf
commit 46fa1b44ab
1 changed files with 2 additions and 6 deletions

View File

@ -14,18 +14,14 @@ import org.sonatype.nexus.scheduling.schedule.Daily
// create a raw repository backed by the default blob store.
// see https://github.com/sonatype/nexus-book-examples/blob/nexus-3.x/scripting/complex-script/rawRepositories.groovy
// see https://help.sonatype.com/display/NXRM3/Raw+Repositories+and+Maven+Sites#RawRepositoriesandMavenSites-UploadingFilestoHostedRawRepositories
repository.createRawHosted("adhoc-package", "default")
repository.createRawHosted("adhoc-package", "default", true, WritePolicy.ALLOW_ONCE)
// create a npm repository backed by the default blob store.
repository.createNpmHosted("npm-hosted", "default")
repository.createNpmHosted("npm-hosted", "default", true, WritePolicy.ALLOW_ONCE)
// create a npm proxy repository backed by the default blob store.
// see https://help.sonatype.com/display/NXRM3/Node+Packaged+Modules+and+npm+Registries
repository.createNpmProxy("npmjs.org-proxy", "https://registry.npmjs.org", "default")
// create a npm group repository that merges the npm-host and npmjs.org-proxy together.
repository.createNpmGroup("npm-group", ["npm-hosted", "npmjs.org-proxy"], "default")