-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 1.18 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
23
(defproject so.dang.cool/clobar "1.0.1"
:description "A crowbar that lets you pry open your code with Clojure."
:url "https://github.com/booniepepper/clobar"
:license {:name "BSD-3-Clause"
:url "https://opensource.org/licenses/BSD-3-Clause"}
:scm {:name "git" :url "https://github.com/booniepepper/clobar"}
:pom-addition ([:developers
[:developer
[:id "booniepepper"]
[:name "Justin Hill"]
[:url "https://so.dang.cool"]]])
:dependencies [[org.clojure/clojure "1.11.1"]]
:repl-options {:init-ns clobar.core}
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:javac-options ["-target" "1.8" "-source" "1.8"]
:deploy-repositories [["central" {:url "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}]]
:classifiers {:javadoc {:java-source-paths ^:replace []
:source-paths ^:replace []
:resource-paths ^:replace ["javadoc"]}
:sources {:source-paths ^:replace ["src"]
:resource-paths ^:replace []}})