This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
clj-rhino/project.clj

12 lines
501 B
Clojure
Raw Normal View History

2014-02-20 19:41:10 -05:00
(defproject org.marianoguerra/clj-rhino "0.2.2"
2013-01-08 10:55:55 -05:00
:description "library to ease the interaction between rhino and clojure"
:url "http://github.com/marianoguerra/clj-rhino"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
2013-07-31 12:37:29 -04:00
:dependencies [[org.clojure/clojure "1.5.1"]
[org.mozilla/rhino "1.7R4"]]
2013-07-31 12:37:29 -04:00
:javac-options ["-target" "1.6" "-source" "1.6"]
:source-paths ["src/clj"]
:java-source-paths ["src/java"])