Advertisement
Guest User

Untitled

a guest
Apr 15th, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. (defproject example-project "0.1.0-SNAPSHOT"
  2. :dependencies [[org.clojure/clojure "1.5.1"]]
  3. :profiles {:s1 {:main ^:skip-aot example-project.core}
  4. :s2 {:main ^:skip-aot example-project.alt-core}}
  5. :main ^:skip-aot example-project.core
  6. :target-path "target/%s"
  7. :profiles {:uberjar {:aot :all}}
  8. :source-paths ["src/clojure"]
  9. :java-source-paths ["src/java"])
  10.  
  11.  
  12. ~~~~~~~~~~~~~~~~~~~~ LATER ~~~~~~~~~~~~~~~~~~~~
  13. $ lein with-profile s1 run
  14. Warning: profile :s1 not found.
  15. ^C
  16. $ lein show-profiles
  17. base
  18. debug
  19. default
  20. offline
  21. test
  22. uberjar
  23. update
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement