Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Commit

Permalink
Merge branch 'mainline' into inbox
Browse files Browse the repository at this point in the history
  • Loading branch information
belucid committed Nov 27, 2019
2 parents 609eac3 + 0f60ee2 commit 5ce8390
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject open-company/lib "0.17.25-alpha2"
(defproject open-company/lib "0.17.25-alpha3"
:description "OpenCompany Common Library"
:url "https://github.com/open-company/open-company-lib"
:license {
Expand All @@ -16,7 +16,7 @@
;; Lisp on the JVM http://clojure.org/documentation
[org.clojure/clojure "1.10.1" :scope "provided"]
;; Async programming and communication https://github.com/clojure/core.async
[org.clojure/core.async "0.4.500"]
[org.clojure/core.async "0.5.527"]
;; Erlang-esque pattern matching https://github.com/clojure/core.match
[org.clojure/core.match "0.3.0"]
;; Clojure reader https://github.com/clojure/tools.reader
Expand Down Expand Up @@ -58,7 +58,7 @@
;; ----------------------------------------------------------------------------------------
;; Utility functions https://github.com/ptaoussanis/encore
;; NB: Not used directly, forcing this version of encore, a dependency of Timbre and Sente
[com.taoensso/encore "2.116.0"]
[com.taoensso/encore "2.117.0"]
;; Interface to Sentry error reporting https://github.com/sethtrain/raven-clj
;; NB: commons-codec pulled in manually
[raven-clj "1.6.0-alpha3" :exclusions [commons-codec]]
Expand All @@ -70,17 +70,21 @@
;; NB: commons-codec is pulled in manually
;; NB: com.fasterxml.jackson.core/jackson-databind is pulled in manually
;; NB: com.amazonaw/aws-java-sdk-dynamodb is pulled in manually to get a newer version
;; NB: com.amazonaws/aws-java-sdk-kms is pulled in by com.amazonaw/aws-java-sdk-dynamodb
[amazonica "0.3.150"
:exclusions [joda-time commons-logging commons-codec com.fasterxml.jackson.core/jackson-databind com.amazonaws/aws-java-sdk-dynamodb]]
:exclusions [joda-time commons-logging commons-codec com.fasterxml.jackson.core/jackson-databind
com.amazonaws/aws-java-sdk-dynamodb com.amazonaws/aws-java-sdk-kms]]
;; DynamoDB SDK
[com.amazonaws/aws-java-sdk-dynamodb "1.11.673"]
[com.amazonaws/aws-java-sdk-dynamodb "1.11.683"]
;; Data binding and tree for XML https://github.com/FasterXML/jackson-databind
;; NB: Not used directly, but a very common dependency, so pulled in for manual version management
[com.fasterxml.jackson.core/jackson-databind "2.10.1"]
;; A Clojure library for JSON Web Token(JWT) https://github.com/liquidz/clj-jwt
[clj-jwt "0.1.1"]
;; RethinkDB client for Clojure https://github.com/apa512/clj-rethinkdb
[com.apa512/rethinkdb "0.15.26" :exclusions [aleph]]
;; NB: aleph is pulled in manually
;; NB: org.clojure/tools.logging is pulled in by squeedo
[com.apa512/rethinkdb "0.15.26" :exclusions [aleph org.clojure/tools.logging]]
;; Asynch comm. for clojure (http-client) https://github.com/ztellman/aleph
;; NB: Not used directly, dependency of RethinkDB
[aleph "0.4.7-alpha5" :exclusions [io.netty/netty-all]]
Expand All @@ -98,9 +102,10 @@
;; A clj-time inspired date library for clojurescript. https://github.com/andrewmcveigh/cljs-time
[com.andrewmcveigh/cljs-time "0.5.2"]
;; AWS SQS consumer https://github.com/TheClimateCorporation/squeedo
;; NB: aleph is pulled in manually
;; NB: com.amazonaws/jmespath-java is pulled in by Amazonica
;; NB: com.amazonaws/aws-java-sdk-sqs is pulled in by Amazonica
[com.climate/squeedo "1.1.2" :exclusions [com.amazonaws/jmespath-java com.amazonaws/aws-java-sdk-sqs]]
[com.climate/squeedo "1.1.2" :exclusions [aleph com.amazonaws/jmespath-java com.amazonaws/aws-java-sdk-sqs]]
;; Squeedo dependency
[org.slf4j/slf4j-nop "2.0.0-alpha1"]
;; Data validation https://github.com/Prismatic/schema
Expand All @@ -114,9 +119,10 @@
;; Safe handling of HTML https://github.com/owasp/java-html-sanitizer
[com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer "20191001.1"]
;; HTTP client https://github.com/dakrone/clj-http
[clj-http "3.10.0"]
;; NB: org.apache.httpcomponents/httpclient is pulled in by amazonica
[clj-http "3.10.0" :exclusions [org.apache.httpcomponents/httpclient]]
;; String manipulation library https://github.com/funcool/cuerdas
[funcool/cuerdas "2.2.0"]
[funcool/cuerdas "2.2.1"]
;; DynamoDB client https://github.com/ptaoussanis/faraday
;; NB: com.amazonaws/aws-java-sdk-dynamodb is pulled in by amazonica
;; NB: joda-time is pulled in by clj-time
Expand All @@ -134,15 +140,16 @@
;; NB: clj-time is pulled in manually
;; NB: joda-time is pulled in by clj-time
;; NB: commons-codec pulled in manually
[midje "1.9.9" :exclusions [joda-time org.clojure/tools.macro clj-time commons-codec]]
;; NB: io.aviso/pretty pulled in by timbre
[midje "1.9.9" :exclusions [io.aviso/pretty joda-time org.clojure/tools.macro clj-time commons-codec]]
]
:plugins [
;; Example-based testing https://github.com/marick/lein-midje
[lein-midje "3.2.1"]
;; Linter https://github.com/jonase/eastwood
[jonase/eastwood "0.3.6"]
;; Static code search for non-idiomatic code https://github.com/jonase/kibit
[lein-kibit "0.1.7" :exclusions [org.clojure/clojure]]
[lein-kibit "0.1.8" :exclusions [org.clojure/clojure]]
]
}

Expand Down

0 comments on commit 5ce8390

Please sign in to comment.