Skip to content

Instantly share code, notes, and snippets.

@yokolet
Created May 26, 2016 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yokolet/77793c4fb9eab6102917bbc087ed87fe to your computer and use it in GitHub Desktop.
Save yokolet/77793c4fb9eab6102917bbc087ed87fe to your computer and use it in GitHub Desktop.
created by pedestal template
(defproject just-test "0.0.1-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[io.pedestal/pedestal.service "0.4.2-SNAPSHOT"]
;; Remove this line and uncomment one of the next lines to
;; use Immutant or Tomcat instead of Jetty:
[io.pedestal/pedestal.jetty "0.4.2-SNAPSHOT"]
;; [io.pedestal/pedestal.immutant "0.4.2-SNAPSHOT"]
;; [io.pedestal/pedestal.tomcat "0.4.2-SNAPSHOT"]
[ch.qos.logback/logback-classic "1.1.7" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.21"]
[org.slf4j/jcl-over-slf4j "1.7.21"]
[org.slf4j/log4j-over-slf4j "1.7.21"]]
:min-lein-version "2.0.0"
:resource-paths ["config", "resources"]
:plugins [[info.sunng/lein-bootclasspath-deps "0.2.0"]]
:boot-dependencies [;; See: https://www.eclipse.org/jetty/documentation/current/alpn-chapter.html#alpn-versions
;[org.mortbay.jetty.alpn/alpn-boot "8.1.4.v20150727"] ;; JDK 1.8.0_51
;[org.mortbay.jetty.alpn/alpn-boot "8.1.3.v20150130"] ;; JDK 1.8.0_31/40/45
;[org.mortbay.jetty.alpn/alpn-boot "8.1.2.v20141202"] ;; JDK 1.8.0_25
[org.mortbay.jetty.alpn/alpn-boot "8.1.0.v20141016" :prepend true] ;; JDK 1.8.0_20 (1.8 up to _20)
]
:profiles {:dev {:aliases {"run-dev" ["trampoline" "run" "-m" "just-test.server/run-dev"]}
:dependencies [[io.pedestal/pedestal.service-tools "0.4.2-SNAPSHOT"]]}
:uberjar {:aot [just-test.server]}}
:main ^{:skip-aot true} just-test.server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment