aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorC.T. Paterson <ctpaterson+onap@gmail.com>2018-08-31 16:05:51 -0400
committerC.T. Paterson <ctpaterson+onap@gmail.com>2018-08-31 16:14:53 -0400
commit1586036fd345c240982237b76469a1f5d04d122d (patch)
treeed475913913ba4028afa9d6c440bed8296dcd171
parent525c7d8dbef106245c4fce29a5b6b31b7160b21c (diff)
Fixed pom in preparation for JJB jobs
Issue-ID: AAI-1547 Change-Id: I96c0c02c741963ad58c18b0ee7c8a4e38c37d05f Signed-off-by: C.T. Paterson <ctpaterson+onap@gmail.com>
-rw-r--r--pom.xml17
-rw-r--r--project.clj9
2 files changed, 16 insertions, 10 deletions
diff --git a/pom.xml b/pom.xml
index 07fdebf..9a1d202 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
<name>chameleon</name>
<description/>
<scm>
- <tag>33595bcc69c84291645bd60cc15bddea1255e298</tag>
+ <tag>525c7d8dbef106245c4fce29a5b6b31b7160b21c</tag>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
@@ -112,11 +112,6 @@
<executions>
<execution>
<id>default</id>
- <goals>
- <goal>build</goal>
- <goal>push</goal>
- <goal>tag</goal>
- </goals>
</execution>
</executions>
</plugin>
@@ -326,6 +321,16 @@
<scope>test</scope>
</dependency>
</dependencies>
+ <distributionManagement>
+ <repository>
+ <id>onap-releases</id>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>onap-snapshot</id>
+ <url>https://nexus.onap.org/content/repositories/snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
</project>
<!-- This file was autogenerated by Leiningen.
diff --git a/project.clj b/project.clj
index c59de69..4b78970 100644
--- a/project.clj
+++ b/project.clj
@@ -26,6 +26,10 @@
["onap-staging" {:url "https://nexus.onap.org/content/repositories/staging/"}]
["onap-snapshot" {:url "https://nexus.onap.org/content/repositories/snapshots/"}]]
:min-lein-version "2.5.3"
+ :pom-addition [:distributionManagement [:repository [:id "onap-releases"]
+ [:url "https://nexus.onap.org/content/repositories/releases/"]]
+ [:snapshotRepository [:id "onap-snapshot"]
+ [:url "https://nexus.onap.org/content/repositories/snapshots/"]]]
:profiles {:dev {:source-paths ["dev"]
:dependencies [[ring/ring-devel "1.6.3"]
[integrant/repl "0.2.0"]]}
@@ -66,7 +70,4 @@
[:repository "${docker.push.registry}/onap/chameleon"]
[:verbose true]
[:serverId "docker-hub"])
- :executions ([:execution [:id "default"]
- [:goals ([:goal "build"]
- [:goal "push"]
- [:goal "tag"])]])}]])
+ :executions ([:execution [:id "default"]])}]])