You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2016/09/17 15:01:54 UTC

usergrid git commit: Exclude logback-classic as it was borking our logging setup.

Repository: usergrid
Updated Branches:
  refs/heads/usergrid-1318-queue 18e4305b9 -> e09e74932


Exclude logback-classic as it was borking our logging setup.


Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/e09e7493
Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/e09e7493
Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/e09e7493

Branch: refs/heads/usergrid-1318-queue
Commit: e09e74932642c7783888639d67218cfb0a117ddd
Parents: 18e4305
Author: Dave Johnson <sn...@apache.org>
Authored: Sat Sep 17 11:01:01 2016 -0400
Committer: Dave Johnson <sn...@apache.org>
Committed: Sat Sep 17 11:01:01 2016 -0400

----------------------------------------------------------------------
 stack/rest/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/e09e7493/stack/rest/pom.xml
----------------------------------------------------------------------
diff --git a/stack/rest/pom.xml b/stack/rest/pom.xml
index 580814c..9bb83a6 100644
--- a/stack/rest/pom.xml
+++ b/stack/rest/pom.xml
@@ -196,6 +196,10 @@
                     <artifactId>commons-logging</artifactId>
                     <groupId>commons-logging</groupId>
                 </exclusion>
+                <exclusion>
+                    <artifactId>logback-classic</artifactId>
+                    <groupId>ch.qos.logback</groupId>
+                </exclusion>
             </exclusions>
         </dependency>
 
@@ -355,6 +359,12 @@
             <artifactId>usergrid-core</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <artifactId>logback-classic</artifactId>
+                    <groupId>ch.qos.logback</groupId>
+                </exclusion>
+            </exclusions>
             <classifier>tests</classifier>
         </dependency>