Skip to content

Commit

Permalink
update dependencies to try to resolve Lambda env issue with ANTLR4
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtait committed Sep 20, 2019
1 parent 369bcd1 commit abd9986
Showing 1 changed file with 31 additions and 14 deletions.
45 changes: 31 additions & 14 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,45 @@
:min-lein-version "2.0.0"

:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/core.async "0.4.500"]

;; logging
[ch.qos.logback/logback-classic "1.2.3" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.26"]
[org.slf4j/jcl-over-slf4j "1.7.26"]
[org.slf4j/log4j-over-slf4j "1.7.26"]
[io.pedestal/pedestal.log "0.5.7"]
;; pedestal (web server)
[io.pedestal/pedestal.service "0.5.7"
:exclusions [org.clojure/tools.analyzer.jvm
org.clojure/core.async]]

;; libraries
[com.stuartsierra/component "0.4.0"]
;; lacinia (graphql)
[org.antlr/antlr4 "4.7.2"]
[org.antlr/antlr4-runtime "4.7.2"]
[clj-antlr "0.2.5"
:exclusions [org.antlr/antlr4
org.antlr/antlr4-runtime]]
[com.walmartlabs/lacinia "0.35.0"
:exclusions [clj-antlr]]
[com.walmartlabs/lacinia-pedestal "0.12.0"
:exclusions [io.pedestal/pedestal.service
io.pedestal/pedestal.jetty
com.walmartlabs/lacinia]]

;; pedestal (web server) & lacinia (graphql)
[io.pedestal/pedestal.service "0.5.7"]
[io.pedestal/pedestal.jetty "0.5.7"]
[com.walmartlabs/lacinia-pedestal "0.12.0"]]
;; libraries
[com.stuartsierra/component "0.4.0"]]

:resource-paths ["config", "resources"]

:profiles {:dev
{:source-paths ["dev" "dev-resources"]
:dependencies [
[io.pedestal/pedestal.jetty "0.5.7"
:exclusions [org.eclipse.jetty/jetty-util]]
[org.eclipse.jetty/jetty-util "9.4.20.v20190813"]
[io.pedestal/pedestal.service-tools "0.5.7"]
[clj-http "3.10.0"]]}
:uberjar {:aot [com.sixpages.api-lacinia-pedestal-component.system]}}
:main ^{:skip-aot true} com.sixpages.api-lacinia-pedestal-component.system)
:log
{:dependencies [
[ch.qos.logback/logback-classic "1.2.3"
:exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.26"]
[org.slf4j/jcl-over-slf4j "1.7.26"]
[org.slf4j/log4j-over-slf4j "1.7.26"]
[io.pedestal/pedestal.log "0.5.7"]]}
:uberjar {:aot [com.sixpages.api-lacinia-pedestal-component.handler]}})

0 comments on commit abd9986

Please sign in to comment.