-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
22 lines (22 loc) · 1.16 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject pubsure/pubsure-core "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
[com.taoensso/timbre "3.1.6"]]
:pom-plugins [[com.theoryinpractise/clojure-maven-plugin "1.3.15"
{:extensions "true"
:executions ([:execution
[:id "clojure-compile"]
[:phase "compile"]
[:configuration
[:temporaryOutputDirectory "true"]
[:sourceDirectories [:sourceDirectory "src"]]]
[:goals [:goal "compile"]]]
[:execution
[:id "clojure-test"]
[:phase "test"]
[:goals [:goal "test"]]])}]]
:pom-addition [:properties [:project.build.sourceEncoding "UTF-8"]])