From 525c7d8dbef106245c4fce29a5b6b31b7160b21c Mon Sep 17 00:00:00 2001 From: Shwetank Dave Date: Fri, 24 Aug 2018 13:24:49 -0400 Subject: 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 --- project.clj | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'project.clj') 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"])]])}]]) -- cgit 1.2.3-korg