From 0ed85ba93d458f14d6384d7fe12a13e9b1091851 Mon Sep 17 00:00:00 2001 From: Oliver Caldwell Date: Thu, 21 May 2020 12:39:25 +0100 Subject: [PATCH] Add a sample project.clj --- .gitignore | 2 ++ project.clj | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 project.clj diff --git a/.gitignore b/.gitignore index 759a6e71..d36e6cb1 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ /node_modules/ /dev/clojure/public/ __pycache__/ +/target/ +/.lein-repl-history diff --git a/project.clj b/project.clj new file mode 100644 index 00000000..b08b1230 --- /dev/null +++ b/project.clj @@ -0,0 +1,10 @@ +(defproject dev "0.1.0-SNAPSHOT" + :description "FIXME: write description" + :url "http://example.com/FIXME" + :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" + :url "https://www.eclipse.org/legal/epl-2.0/"} + :dependencies [[org.clojure/clojure "1.10.1"] + [org.clojure/tools.logging "1.1.0"]] + :plugins [[cider/cider-nrepl "0.24.0"]] + :source-paths ["dev/clojure/src"] + :repl-options {:init-ns dev.sandbox})