aboutsummaryrefslogtreecommitdiffstats
path: root/project.clj
diff options
context:
space:
mode:
authorAdrian Batos-Parac <adrian.batos-parac@amdocs.com>2018-02-22 14:43:42 -0500
committerAdrian Batos-Parac <adrian.batos-parac@amdocs.com>2018-02-22 14:46:57 -0500
commite023325d3e76a71ac795ebbdb74f5a89756040a7 (patch)
tree63b2816a829c785f3c0329c3ea57ebd3c4f2937d /project.clj
parent2610df2fc29a9d16bb869f652d4d21caeae4c154 (diff)
Initial Commit of Chameleon
Commit the initial set of code for the Chameleon offering to ONAP Change-Id: Ia58bd49eafc0a3702c17c9cab34d666ed1627ba5 Issue-ID: AAI-797 Signed-off-by: Adrian Batos-Parac <adrian.batos-parac@amdocs.com>
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj31
1 files changed, 31 insertions, 0 deletions
diff --git a/project.clj b/project.clj
new file mode 100644
index 0000000..aaab854
--- /dev/null
+++ b/project.clj
@@ -0,0 +1,31 @@
+(defproject chameleon "0.1.0"
+ :dependencies [[org.clojure/clojure "1.8.0"]
+ [com.7theta/utilis "1.0.4"]
+ [http-kit "2.2.0"]
+ [ring/ring-core "1.6.3"]
+ [ring/ring-defaults "0.3.1"]
+ [ring/ring-anti-forgery "1.1.0"]
+ [compojure "1.6.0"]
+ [liberator "0.15.1"]
+ [cheshire "5.7.1"]
+ [inflections "0.13.0"]
+ [clj-time "0.14.2"]
+ [integrant "0.6.2"]
+ [clojure-future-spec "1.9.0-beta4"]
+ [yogthos/config "0.9"]
+ [org.onap.aai.event-client/event-client-dmaap "1.2.0"]
+ ]
+ :repositories [["onap-releases" {:url "https://nexus.onap.org/content/repositories/releases/"}]
+ ["onap-public" {:url "https://nexus.onap.org/content/repositories/public/"}]
+ ["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"
+ :profiles {:dev {:source-paths ["dev"]
+ :dependencies [[ring/ring-devel "1.6.3"]
+ [integrant/repl "0.2.0"]]}
+ :uberjar {:source-paths ["prod"]
+ :main chameleon.server
+ :aot [chameleon.server]
+ :uberjar-name "chameleon.jar"}}
+ :prep-tasks [ "compile"])