-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
27 lines (27 loc) · 1.33 KB
/
project.clj
File metadata and controls
27 lines (27 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(defproject com.bjondinc/recurrence-expression "0.2.10"
:description "JSON for expressing recurrence patterns"
:url "https://github.com/Bjond/recurrence-expression"
:scm "https://github.com/Bjond/recurrence-expression.git"
:license {:name "GNU Lesser General Public License v3.0"
:url "http://www.gnu.org/licenses/lgpl-3.0.txt"
:year 2016
:key "lgpl-3.0"}
:plugins [[lein-aot-filter "0.1.0"]]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/math.numeric-tower "0.0.4"]
[clj-time "0.11.0"]
[prismatic/schema "0.4.0"]
[cheshire "5.6.3"]]
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]
:resource-paths ["src/main/resources" "src/test/resources"]
:deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}]
["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/"
:creds :gpg}]]
:pom-addition [:developers [:developer
[:name "Michi Oshima"]
[:email "michi.oshima@bjondinc.com"]
[:timezone "-5"]]]
:aot :all
:aot-include [#"^com.*"])