From 3c5a21eed17855b6d9454d1479fff1a8b2a9fddb Mon Sep 17 00:00:00 2001 From: Cam Saul <cam@getluckybird.com> Date: Thu, 12 Mar 2015 13:18:52 -0700 Subject: [PATCH] update plugin dependencies --- README.md | 8 ++++++-- project.clj | 10 +++++----- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5d64a0e4aab..edbadff2277 100644 --- a/README.md +++ b/README.md @@ -70,9 +70,13 @@ You'll be walked through the steps to get started. ## Checking for Out-of-Date Dependencies - lein ancient + lein ancient # list all out-of-date dependencies + lein ancient latest lein-ring # list latest version of artifact lein-ring -Will give you a list of out-of-date plugins and dependencies. This requires leiningen version 2.4.0 or higher so run `lein upgrade` first if needed. Once's this repo is made public, this Clojars badge will work and show the status as well: +Will give you a list of out-of-date dependencies. This requires leiningen version 2.4.0 or higher so run `lein upgrade` first if needed. +This doesn't seem to check plugins, so you'll have to do that manually using `lein ancient latest`. + +Once's this repo is made public, this Clojars badge will work and show the status as well: [](http://jarkeeper.com/metabase/metabase-init) diff --git a/project.clj b/project.clj index 62a80237709..15718ac43ac 100644 --- a/project.clj +++ b/project.clj @@ -39,8 +39,8 @@ [ring/ring-jetty-adapter "1.3.2"] ; Ring adapter using Jetty webserver (used to run a Ring server for unit tests) [ring/ring-json "0.3.1"] ; Ring middleware for reading/writing JSON automatically [swiss-arrows "1.0.0"]] ; 'Magic wand' macro -<>, etc. - :plugins [[lein-environ "0.5.0"] ; easy access to environment variables - [lein-ring "0.8.10"]] ; start the HTTP server with 'lein ring server' + :plugins [[lein-environ "1.0.0"] ; easy access to environment variables + [lein-ring "0.9.2"]] ; start the HTTP server with 'lein ring server' :java-source-paths ["src/java"] :main ^:skip-aot metabase.core :manifest {"Liquibase-Package" "liquibase.change,liquibase.changelog,liquibase.database,liquibase.parser,liquibase.precondition,liquibase.datatype,liquibase.serializer,liquibase.sqlgenerator,liquibase.executor,liquibase.snapshot,liquibase.logging,liquibase.diff,liquibase.structure,liquibase.structurecompare,liquibase.lockservice,liquibase.sdk,liquibase.ext"} @@ -57,9 +57,9 @@ [ring/ring-mock "0.2.0"]] :plugins [[cider/cider-nrepl "0.9.0-SNAPSHOT"] ; Interactive development w/ cider NREPL in Emacs [jonase/eastwood "0.2.1"] ; Linting - [lein-ancient "0.6.4"] ; Check project for outdated dependencies + plugins w/ 'lein ancient' - [lein-expectations "0.0.7"] ; run unit tests with 'lein expectations' - [lein-marginalia "LATEST"]] ; generate documentation with 'lein marg' + [lein-ancient "0.6.5"] ; Check project for outdated dependencies + plugins w/ 'lein ancient' + [lein-expectations "0.0.8"] ; run unit tests with 'lein expectations' + [lein-marginalia "0.8.0"]] ; generate documentation with 'lein marg' :jvm-opts ["-Dlogfile.path=target/log" "-Xms1024m" ; give JVM a decent heap size to start with "-Xmx2048m" ; hard limit of 2GB so we stop hitting the 4GB container limit on CircleCI -- GitLab