aboutsummaryrefslogtreecommitdiffstats
path: root/project.clj
diff options
context:
space:
mode:
authorAdrian Batos-Parac <adrian.batos-parac@amdocs.com>2018-02-22 15:50:01 -0500
committerAdrian Batos-Parac <adrian.batos-parac@amdocs.com>2018-02-22 15:50:01 -0500
commitd6a36b1577b3220f7822ae655d57fa6a1dded5a6 (patch)
tree0adf5d8b2f65b0fc6129a42c3fd0309bff9d8700 /project.clj
parent030236e7268ca08aeae13acec04e3efc2687b2e6 (diff)
Initial Commit of Gallifrey
Commit the initial set of code for the Gallifrey offering to ONAP Change-Id: Id1d3bd2bda5ab530682b6646f2cb0414baf671a5 Issue-ID: AAI-797 Signed-off-by: abatos <adrian.batos-parac@amdocs.com>
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj28
1 files changed, 28 insertions, 0 deletions
diff --git a/project.clj b/project.clj
new file mode 100644
index 0000000..d520863
--- /dev/null
+++ b/project.clj
@@ -0,0 +1,28 @@
+(defproject gallifrey "0.4.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"]
+
+ [com.apa512/rethinkdb "0.15.26"]
+ [inflections "0.13.0"]
+ [clj-time "0.14.2"]
+
+ [integrant "0.6.2"]
+ [clojure-future-spec "1.9.0-beta4"]
+ [yogthos/config "0.9"]]
+ :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 gallifrey.server
+ :uberjar-name "gallifrey.jar"}}
+ :prep-tasks ["compile"])