diff options
author | C.T. Paterson <ctpaterson+onap@gmail.com> | 2018-09-18 14:23:04 -0400 |
---|---|---|
committer | C.T. Paterson <ctpaterson+onap@gmail.com> | 2018-09-18 14:24:38 -0400 |
commit | 0e3c742bec42615ac1576d07c8fa322512e4c215 (patch) | |
tree | 1c7efeabe3b356d1e9b18b2e9d08fb37f64264d3 | |
parent | a0aa3d2db20d0afc00b34c5db9fcac3b06299237 (diff) |
Cleanup pom.xml
- Remove unused repos
- Modelled on (https://gerrit.onap.org/r/#/c/67165/1)
Issue-ID: AAI-1547
Change-Id: I05d49020bf67a502cfef82aa563bed54c096d6bd
Signed-off-by: C.T. Paterson <ctpaterson+onap@gmail.com>
-rw-r--r-- | pom.xml | 30 | ||||
-rw-r--r-- | project.clj | 6 |
2 files changed, 7 insertions, 29 deletions
@@ -7,7 +7,7 @@ <name>aai-chameleon</name> <description/> <scm> - <tag>bc462e353ad91efce900a4bd19879a2e8496605e</tag> + <tag>a0aa3d2db20d0afc00b34c5db9fcac3b06299237</tag> </scm> <build> <sourceDirectory>src</sourceDirectory> @@ -146,28 +146,8 @@ </releases> </repository> <repository> - <id>onap-releases</id> - <url>https://nexus.onap.org/content/repositories/releases/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </repository> - <repository> - <id>onap-public</id> - <url>https://nexus.onap.org/content/repositories/public/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </repository> - <repository> - <id>ecomp-staging</id> - <url>https://nexus.onap.org/content/repositories/staging/</url> + <id>ecomp-snapshots</id> + <url>https://nexus.onap.org/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> @@ -176,8 +156,8 @@ </releases> </repository> <repository> - <id>ecomp-snapshots</id> - <url>https://nexus.onap.org/content/repositories/snapshots/</url> + <id>onap-releases</id> + <url>https://nexus.onap.org/content/repositories/releases/</url> <snapshots> <enabled>true</enabled> </snapshots> diff --git a/project.clj b/project.clj index 1c53cf2..1c917a2 100644 --- a/project.clj +++ b/project.clj @@ -22,11 +22,9 @@ [org.clojure/test.check "0.9.0"] [cloverage/cloverage "1.0.10"]] :plugins [[lein-cloverage "1.0.10"]] - :repositories [["onap-releases" {:url "https://nexus.onap.org/content/repositories/releases/"}] - ["onap-public" {:url "https://nexus.onap.org/content/repositories/public/"}] - ["ecomp-staging" {:name "ECOMP Staging Repository" :url "https://nexus.onap.org/content/repositories/staging/"}] - ["ecomp-snapshots" {:name "ECOMP Snapshot Repository" :url "https://nexus.onap.org/content/repositories/snapshots/"}]] :min-lein-version "2.5.3" + :repositories [["ecomp-snapshots" {:name "ECOMP Snapshot Repository" :url "https://nexus.onap.org/content/repositories/snapshots/"}] + ["onap-releases" {:url "https://nexus.onap.org/content/repositories/releases/"}]] :pom-addition [:distributionManagement [:repository [:id "ecomp-releases"] |