compile against java 1.6

This commit is contained in:
Mariano Guerra 2013-07-31 18:37:29 +02:00
parent 8b79ccb845
commit 240b9cbf65

View file

@ -1,10 +1,11 @@
(defproject org.marianoguerra/clj-rhino "0.2.0" (defproject org.marianoguerra/clj-rhino "0.2.1"
:description "library to ease the interaction between rhino and clojure" :description "library to ease the interaction between rhino and clojure"
:url "http://github.com/marianoguerra/clj-rhino" :url "http://github.com/marianoguerra/clj-rhino"
:license {:name "Eclipse Public License" :license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"} :url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"] :dependencies [[org.clojure/clojure "1.5.1"]
[org.mozilla/rhino "1.7R4"]] [org.mozilla/rhino "1.7R4"]]
:source-paths ["src/clj"] :javac-options ["-target" "1.6" "-source" "1.6"]
:java-source-paths ["src/java"]) :source-paths ["src/clj"]
:java-source-paths ["src/java"])