From a8a61c75e4047001b2f11e992de6f5e80b233eef Mon Sep 17 00:00:00 2001 From: Haim Ashkenazi Date: Thu, 1 Aug 2013 17:47:05 +0300 Subject: [PATCH] Temporary fix to building uberjar with snapshot dependency. Until 'ring-anti-forgery' will merge my pull request. --- Gruntfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 985d9f1..c673463 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -144,7 +144,10 @@ module.exports = function(grunt) { stderr: true }, uberjar: { - command: "lein with-profile production do clean, uberjar", + command: [ + "export LEIN_SNAPSHOTS_IN_RELEASE=true", + "Lein with-profile production do clean, uberjar" + ].join(" && "), options: { stdout: true, stderr: true