Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
4968993e
Unverified
Commit
4968993e
authored
6 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Fix duplicate SLF4J bindings by adding project.clj exclusion
parent
395f8a61
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
project.clj
+6
-4
6 additions, 4 deletions
project.clj
with
6 additions
and
4 deletions
project.clj
+
6
−
4
View file @
4968993e
...
...
@@ -20,13 +20,14 @@
[
org.clojure/java.jdbc
"0.7.6"
]
; basic JDBC access from Clojure
[
org.clojure/math.combinatorics
"0.1.4"
]
; combinatorics functions
[
org.clojure/math.numeric-tower
"0.0.4"
]
; math functions like `ceil`
[
org.clojure/tools.logging
"0.
3
.1"
]
; logging framework
[
org.clojure/tools.logging
"0.
4
.1"
]
; logging framework
[
org.clojure/tools.namespace
"0.2.10"
]
[
amalloy/ring-buffer
"1.2.1"
:exclusions
[
org.clojure/clojure
org.clojure/clojurescript
]]
; fixed length queue implementation, used in log buffering
[
amalloy/ring-gzip-middleware
"0.1.3"
]
; Ring middleware to GZIP responses if client can handle it
[
aleph
"0.4.5-alpha2"
]
; Async HTTP library; WebSockets
[
aleph
"0.4.5-alpha2"
; Async HTTP library; WebSockets
:exclusions
[
org.clojure/tools.logging
]]
[
buddy/buddy-core
"1.2.0"
]
; various cryptograhpic functions
[
buddy/buddy-sign
"1.5.0"
]
; JSON Web Tokens; High-Level message signing library
[
cheshire
"5.7.0"
]
; fast JSON encoding (used by Ring JSON middleware)
...
...
@@ -83,7 +84,8 @@
[
net.sf.cssbox/cssbox
"4.12"
; HTML / CSS rendering
:exclusions
[
org.slf4j/slf4j-api
]]
[
org.clojars.pntblnk/clj-ldap
"0.0.12"
]
; LDAP client
[
org.liquibase/liquibase-core
"3.6.2"
]
; migration management (Java lib)
[
org.liquibase/liquibase-core
"3.6.2"
; migration management (Java lib)
:exclusions
[
ch.qos.logback/logback-classic
]]
[
org.postgresql/postgresql
"42.2.2"
]
; Postgres driver
[
org.slf4j/slf4j-log4j12
"1.7.25"
]
; abstraction for logging frameworks -- allows end user to plug in desired logging framework at deployment time
[
org.tcrawley/dynapath
"0.2.5"
]
; Dynamically add Jars (e.g. Oracle or Vertica) to classpath
...
...
@@ -134,7 +136,7 @@
:docstring-checker
{
:include
[
#
"^metabase"
]
:exclude
[
#
"test"
#
"^metabase\.http-client$"
]}
:profiles
{
:dev
{
:dependencies
[[
expectations
"2.2.0-beta2"
]
; unit tests
:profiles
{
:dev
{
:dependencies
[[
expectations
"2.2.0-beta2"
]
; unit tests
[
ring/ring-mock
"0.3.0"
]]
; Library to create mock Ring requests for unit tests
:plugins
[[
docstring-checker
"1.0.2"
]
; Check that all public vars have docstrings. Run with 'lein docstring-checker'
[
jonase/eastwood
"0.2.6"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment