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
b9f0d0a0
Commit
b9f0d0a0
authored
10 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Patches
Plain Diff
drop midje for unit tests. move expectations to :dev profile so its not bundled in our jar.
parent
c859d557
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
project.clj
+2
-3
2 additions, 3 deletions
project.clj
with
2 additions
and
3 deletions
project.clj
+
2
−
3
View file @
b9f0d0a0
...
...
@@ -17,7 +17,6 @@
[
com.h2database/h2
"1.3.170"
]
; embedded SQL database
[
compojure
"1.3.1"
]
; HTTP Routing library built on Ring
[
environ
"0.5.0"
]
; easy environment management
[
expectations
"2.0.12"
]
; unit tests
[
korma
"0.4.0"
]
; SQL lib
[
org.clojure/java.jdbc
"0.3.6"
]
; basic jdbc access from clojure
[
org.liquibase/liquibase-core
"3.3.2"
]
; migration management (Java lib)
...
...
@@ -34,7 +33,6 @@
:plugins
[[
cider/cider-nrepl
"0.9.0-SNAPSHOT"
]
; Interactive development w/ cider NREPL in Emacs
[
lein-environ
"0.5.0"
]
; easy access to environment variables
[
lein-expectations
"0.0.7"
]
; run unit tests with 'lein expectations'
[
lein-midje
"3.1.3"
]
; another unit testing option
[
lein-marginalia
"LATEST"
]
; generate documentation with 'lein marg'
[
lein-ring
"0.8.10"
]
; start the HTTP server with 'lein ring server'
]
...
...
@@ -42,6 +40,7 @@
:main
^
:skip-aot
metabase.core
:target-path
"target/%s"
:ring
{
:handler
metabase.core/app
}
:profiles
{
:dev
{
:dependencies
[[
midje
"1.6.3"
]]
:profiles
{
:dev
{
:dependencies
[[
expectations
"2.0.12"
]
; unit tests
]
:jvm-opts
[
"-Dlogfile.path=target/log"
]}
:uberjar
{
:aot
:all
}})
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