Skip to content

Instantly share code, notes, and snippets.

@sritchie
Last active December 27, 2015 13:09
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save sritchie/7330591 to your computer and use it in GitHub Desktop.
(defproject repro "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[com.keminglabs/cljx "0.3.1"]]
:dependencies [[org.clojure/clojure "1.5.1"]]
:cljx {:builds [{:source-paths ["src/cljx"]
:output-path "target/generated/clj"
:rules :clj}]}
:profiles {:uberjar {:aot :all :prep-tasks [["cljx"]]}})
;; [sritchie@RitchieMacBook ~/repro]$ lein uberjar
;; Compiling repro.core
;; Rewriting src/cljx to target/generated/clj (clj) with features #{clj} and 0 transformations.
;; Created /Users/sritchie/repro/target/repro-0.1.0-SNAPSHOT.jar
;; Created /Users/sritchie/repro/target/repro-0.1.0-SNAPSHOT-standalone.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment