From d26cb369ecfc0e1774d90d967ab8f2d5a9fb1768 Mon Sep 17 00:00:00 2001 From: Jim Crossley Date: Wed, 11 Mar 2015 11:56:21 -0400 Subject: [PATCH] Allow tools.nrepl to be a transitive dep of wildfly lib [IMMUTANT-536] It's in lein's :base profile, which results in its "test" scope in the generated pom unless we remove it. See https://github.com/technomancy/leiningen/issues/1771 --- wildfly/project.clj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wildfly/project.clj b/wildfly/project.clj index 2af856fa..592610ad 100644 --- a/wildfly/project.clj +++ b/wildfly/project.clj @@ -19,4 +19,6 @@ :dependencies [[org.immutant/core _] [org.clojure/tools.nrepl "_"] - [org.projectodd.wunderboss/wunderboss-wildfly _]]) + [org.projectodd.wunderboss/wunderboss-wildfly _]] + + :profiles {:base {:dependencies []}})