Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;;;; Project Configuration
  2.  
  3. ;;; This section of code deals with the projects various configurations and
  4. ;;; the projects dependencies.
  5.  
  6. (defproject arc_ui "0.1.0-SNAPSHOT"
  7.  
  8.   :description "FIXME: write description"
  9.   :url "http://example.com/FIXME"
  10.  
  11.   :dependencies [[ring "1.7.1"]
  12.                  [ring-middleware-format "0.7.2"]
  13.                  [com.fasterxml.jackson.core/jackson-core "2.9.7"]
  14.                  [com.fasterxml.jackson.datatype/jackson-datatype-jdk8 "2.9.7"]
  15.                  [compojure "1.6.1"]
  16.                  [cprop "0.1.13"]
  17.                  [funcool/struct "1.3.0"]
  18.                  [luminus-immutant "0.2.4"]
  19.                  [luminus-transit "0.1.1"]
  20.                  [luminus/ring-ttl-session "0.3.2"]
  21.                  [markdown-clj "1.0.5"]
  22.                  [metosin/muuntaja "0.6.1"]
  23.                  [metosin/ring-http-response "0.9.1"]
  24.                  [mount "0.1.14"]
  25.                  [nrepl "0.4.5"]
  26.                  [org.clojure/clojure "1.9.0"]
  27.                  [org.clojure/tools.cli "0.4.1"]
  28.                  [org.webjars.bower/tether "1.4.4"]
  29.                  [org.webjars/bootstrap "4.1.3"]
  30.                  [org.webjars/font-awesome "5.5.0"]
  31.                  [org.webjars/jquery "3.3.1-1"]
  32.                  [org.webjars/webjars-locator "0.34"]
  33.                  [ring-webjars "0.2.0"]
  34.                  [ring/ring-core "1.7.1"]
  35.                  [ring/ring-defaults "0.3.2"]
  36.                  [selmer "1.12.5"]
  37.                  [org.clojure/tools.logging "0.4.1"]
  38.                  [org.clojure/clojurescript "1.10.439"]
  39.                  [org.clojure/tools.reader "1.2.2"]]
  40.  
  41.   :min-lein-version "2.0.0"
  42.  
  43.   :source-paths ["src/clj"]
  44.   :test-paths ["test/clj"]
  45.   :resource-paths ["resources"]
  46.   :target-path "target/%s/"
  47.   :java-source-paths ["src/java"]
  48.   :javac-options ["-target" "1.8" "-source" "1.8"]
  49.  
  50.   :plugins [[lein-immutant "2.1.0"]
  51.             [lein-cljsbuild "1.1.7"]
  52.             [lein-figwheel "0.5.17"]
  53.             ]
  54.  
  55.   :main arc_ui.core
  56.  
  57.   ;;; To compile ClojureScript use - lein cljsbuild [once or auto]
  58.   ;;; ClojureSrcipt files are stored in src/cljs
  59.   ;;; ClojureScript is compiled to resources/public/js/main.js
  60.  
  61.   :cljsbuild {
  62.               :builds [{
  63.                         :id "Dev"
  64.                         ; The path to the top-level ClojureScript source directory:
  65.                         :source-paths ["src/cljs", "src/cljc"]
  66.                         ; The standard ClojureScript compiler options:
  67.                         ; (See the ClojureScript compiler documentation for details.)
  68.                         :figwheel true
  69.                         :compiler {
  70.                                    :main "Test"
  71.                                    :asset-path "/js/out"
  72.                                    :output-to "resources/public/js/main.js"  ; default: target/cljsbuild-main.js
  73.                                    :output-dir "resources/public/js/out"
  74.                                    ;:source-map "resources/public/js/main.js.map" only needed when not using :none
  75.                                    :optimizations :none
  76.                                    :source-map false
  77.                                    :pretty-print false}}]}
  78.   )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement