forked from ninjudd/clojure-protobuf
-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.clj
17 lines (17 loc) · 878 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject org.clojars.ghaskins/protobuf "3.4.0-2-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/ghaskins/clojure-protobuf"
:javac-options ["-target" "1.8" "-source" "1.8"]
:java-source-paths ["src"]
:lein-release {:deploy-via :clojars}
:dependencies [[org.clojure/clojure "1.8.0"]
[com.google.protobuf/protobuf-java "3.4.0"]
[org.flatland/useful "0.11.5"]
[org.flatland/schematic "0.1.5"]
[org.flatland/io "0.3.0"]
[ordered-collections "0.4.2"]
[gloss "0.2.1"]]
:aliases {"testall" ["with-profile" "dev,default:dev,1.3,default:dev,1.5,default" "test"]}
:checksum-deps true)