aboutsummaryrefslogtreecommitdiffstats
path: root/project.clj
diff options
context:
space:
mode:
authorShwetank Dave <shwetank.dave@amdocs.com>2018-08-24 13:24:49 -0400
committerShwetank Dave <shwetank.dave@amdocs.com>2018-08-30 14:08:19 -0400
commit525c7d8dbef106245c4fce29a5b6b31b7160b21c (patch)
tree5f24deb3ca219bf7536649d1c89988abb06dbbf3 /project.clj
parente16bda37d76e63e0f903bba13ed1dccf3b17f395 (diff)
Updated log messages to be more intuitive
Added support for kafka Updated logging.clj file to not reject messages which contain an empty substring. Updating Dockerfile to use the specified GLIBC_VERSION Adding spotify docker plugin Moving the Dockerfile to directory root. Issue-ID: AAI-1542 Change-Id: I4c41486cb6c7698a2c2736d574721f6a5237563e Signed-off-by: Shwetank Dave <shwetank.dave@amdocs.com>
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj15
1 files changed, 13 insertions, 2 deletions
diff --git a/project.clj b/project.clj
index 430173c..c59de69 100644
--- a/project.clj
+++ b/project.clj
@@ -1,5 +1,6 @@
(defproject chameleon "0.1.0"
:dependencies [[org.clojure/clojure "1.9.0"]
+ [org.clojure/core.async "0.4.474"]
[com.7theta/utilis "1.0.4"]
[http-kit "2.2.0"]
[ring/ring-core "1.6.3"]
@@ -12,7 +13,8 @@
[clj-time "0.14.2"]
[integrant "0.6.2"]
[yogthos/config "0.9"]
- [org.onap.aai.event-client/event-client-dmaap "1.2.1"]
+ [org.onap.aai.event-client/event-client-dmaap "1.3.0"]
+ [org.onap.aai.event-client/event-client-kafka "1.3.0"]
[org.onap.aai.logging-service/common-logging "1.2.2"]
[camel-snake-kebab "0.4.0"]
[metosin/ring-http-response "0.9.0"]
@@ -58,4 +60,13 @@
[:mainClass "chameleon.server"]]])
:executions ([:execution [:id "assemble"]
[:phase "package"]
- [:goals ([:goal "single"])]])}]])
+ [:goals ([:goal "single"])]])}]
+ [com.spotify/dockerfile-maven-plugin "1.4.4"
+ {:configuration ([:tag "latest"]
+ [:repository "${docker.push.registry}/onap/chameleon"]
+ [:verbose true]
+ [:serverId "docker-hub"])
+ :executions ([:execution [:id "default"]
+ [:goals ([:goal "build"]
+ [:goal "push"]
+ [:goal "tag"])]])}]])