-
Notifications
You must be signed in to change notification settings - Fork 17
/
project.clj
43 lines (42 loc) · 2.1 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(defproject org.clj-commons/dirigiste "1.0.4"
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases true}]]
:url "https://github.com/clj-commons/dirigiste"
:description "Centrally-planned thread and object pools"
:license {:name "MIT License"}
:dependencies []
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[junit/junit "4.13.2"]]
:java-source-paths ["test/java"]}
:test {:dependencies [[junit/junit "4.13.2"]]}}
:java-source-paths ["src"]
:test-paths ["test/clojure"]
:javac-options ["-target" "1.8" "-source" "1.8"]
:plugins [[lein-junit "1.1.9"]]
:junit ["test/java"]
;; Maven properties for the Maven God
:scm {:url "git@github.com:clj-commons/dirigiste.git"}
:pom-plugins [[org.codehaus.mojo/build-helper-maven-plugin "1.7"
{:executions
([:execution [:id "add-test-source"]
[:phase "generate-test-sources"]
[:goals [:goal "add-test-source"]]
[:configuration [:sources [:source "test/java"]]]])}]]
:pom-addition ([:properties
[:maven.compiler.source 1.8]
[:maven.compiler.target 1.8]]
[:organization
[:name "CLJ Commons"]
[:url "http://clj-commons.org/"]]
[:developers [:developer
[:id "kingmob"]
[:name "Matthew Davidson"]
[:url "http://modulolotus.net"]
[:email "matthew@modulolotus.net"]]])
:classifiers {:javadoc {:java-source-paths ^:replace []
:source-paths ^:replace []
:resource-paths ^:replace []}
:sources {:java-source-paths ^:replace ["src"]
:resource-paths ^:replace []}})