-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
35 lines (26 loc) · 995 Bytes
/
project.clj
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
28
29
30
31
32
33
34
35
(defproject com.vodori/schema-conformer "0.1.3-SNAPSHOT"
:description
"A library for configurable conforming of data according to prismatic schemas."
:url
"/~https://github.com/vodori/schema-conformer"
:license
{:name "MIT License" :url "http://opensource.org/licenses/MIT" :year 2020 :key "mit"}
:scm
{:name "git" :url "/~https://github.com/vodori/schema-conformer"}
:pom-addition
[:developers
[:developer
[:name "Paul Rutledge"]
[:url "/~https://github.com/rutledgepaulv"]
[:email "paul.rutledge@vodori.com"]
[:timezone "-5"]]]
: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}}
:dependencies
[[org.clojure/clojure "1.10.1"]
[prismatic/schema "1.1.12"]]
:repl-options
{:init-ns schema-conformer.core}
:profiles
{:test {:dependencies [[clj-time "0.15.2" :scope "test"]]}})