forked from ninjudd/clojure-protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
21 lines (21 loc) · 1.2 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject org.flatland/protobuf "0.7.3-SNAPSHOT"
:description "Clojure-protobuf provides a clojure interface to Google's protocol buffers."
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:url "https://github.com/flatland/clojure-protobuf"
:dependencies [[org.clojure/clojure "1.4.0"]
[org.flatland/useful "0.9.0"]
[org.flatland/schematic "0.1.0"]
[ordered-collections "0.4.0"]]
:plugins [[lein-protobuf "0.3.1"]]
:javac-options ["-target" "5" "-source" "5"]
:aliases {"testall" ["with-profile" "dev,default:dev,1.3,default:dev,1.5,default" "test"]}
:profiles {:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.0-master-SNAPSHOT"]]}
:dev {:dependencies [[gloss "0.2.1"]
[org.flatland/io "0.3.0"]]}}
:repositories {"sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots"
:snapshots true
:releases {:checksum :fail :update :always}}}
:checksum-deps true
:java-source-paths ["src"])