-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
32 lines (32 loc) · 1.65 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
(defproject org.iplantc/porklock "1.2.2"
:description "A command-line tool for interacting with iRODS."
:url "http://www.iplantcollaborative.org"
:license {:name "BSD"
:url "http://iplantcollaborative.org/sites/default/files/iPLANT-LICENSE.txt"}
:scm {:connection "scm:git:[email protected]:iPlantCollaborativeOpenSource/filetool.git"
:developerConnection "scm:git:[email protected]:iPlantCollaborativeOpenSource/filetool.git"
:url "[email protected]:iPlantCollaborativeOpenSource/filetool.git"}
:pom-addition [:developers
[:developer
[:url "https://github.com/orgs/iPlantCollaborativeOpenSource/teams/iplant-devs"]]]
:main porklock.core
:classifiers [["javadoc" :javadoc]
["sources" :sources]]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/tools.logging "0.2.6"]
[org.iplantc/clojure-commons "1.4.8"]
[org.clojure/tools.cli "0.2.1"]
[commons-io/commons-io "2.2"]
[slingshot "0.10.3"]
[com.cemerick/url "0.0.7"]
[com.novemberain/welle "1.4.0"]
[cheshire "5.1.1"]
[org.iplantc/clj-jargon "0.4.2"]]
:plugins [[org.iplantc/lein-iplant-rpm "1.4.3"]]
:iplant-rpm {:summary "Porklock"
:type :command
:exe-files ["curl_wrapper.pl"]}
:repositories [["sonatype-nexus-snapshots"
{:url "https://oss.sonatype.org/content/repositories/snapshots"}]]
:deploy-repositories [["sonatype-nexus-staging"
{:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"}]])