-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
27 lines (22 loc) · 1.26 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
; Copyright © 2013 - 2016 Dr. Thomas Schank <[email protected]>
; Licensed under the terms of the GNU Affero General Public License v3.
; See the "LICENSE.txt" file provided with this software.
(defproject cider-ci/clj-utils_v4 "0.0.0-PLACEHOLDER"
:description "Shared Clojure Utils for Cider-CI"
:url "https://github.com/cider-ci/cider-ci_clj-utils"
:license {:name "GNU AFFERO GENERAL PUBLIC LICENSE Version 3"
:url "http://www.gnu.org/licenses/agpl-3.0.html"}
:dependencies [ ]
:profiles {:dev {:dependencies
~(read-string (slurp "dependencies.clj"))
:plugins [
[org.apache.maven.wagon/wagon-ssh-external "2.6"]
]
:resource-paths ["resources_dev"]
} }
:java-source-paths ["java"]
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"]
:repositories [["tmp" {:url "http://maven-repo-tmp.drtom.ch" :snapshots false}]]
:deploy-repositories [ ["tmp" "scp://[email protected]/tmp/maven-repo/"]]
)
;(cemerick.pomegranate.aether/register-wagon-factory! "scp" #(let [c (resolve 'org.apache.maven.wagon.providers.ssh.external.ScpExternalWagon)] (clojure.lang.Reflector/invokeConstructor c (into-array []))))