You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by fr...@apache.org on 2022/09/15 02:39:44 UTC

[druid] branch master updated: Move web-console dependency declaration from druid-server to druid-distribution (#12501)

This is an automated email from the ASF dual-hosted git repository.

frankchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new aa9b0900d4 Move web-console dependency declaration from druid-server to druid-distribution (#12501)
aa9b0900d4 is described below

commit aa9b0900d434f6e882adc6715adfbc787a68e302
Author: Frank Chen <fr...@outlook.com>
AuthorDate: Thu Sep 15 10:39:30 2022 +0800

    Move web-console dependency declaration from druid-server to druid-distribution (#12501)
    
    * Move web-console dependency from druid-server to distribution
    
    * Add a test to check if the web-console is correctly integrated
    
    * exclude web-console from 'other integration tests'
    
    * Revert "exclude web-console from 'other integration tests'"
    
    This reverts commit 8d72225544f83514c344b5ecd9c69c9b3114ee33.
    
    * Revert "Add a test to check if the web-console is correctly integrated"
    
    This reverts commit d6ac8f3087b22515b03e42fd57d24e7f3ddca254.
---
 distribution/pom.xml | 6 ++++++
 server/pom.xml       | 7 -------
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/distribution/pom.xml b/distribution/pom.xml
index f602249260..7fab9200b0 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -39,6 +39,12 @@
             <artifactId>druid-services</artifactId>
             <version>${project.parent.version}</version>
         </dependency>
+        <dependency>
+            <!-- This is needed to bundle the web console -->
+            <groupId>org.apache.druid</groupId>
+            <artifactId>druid-console</artifactId>
+            <version>${project.parent.version}</version>
+        </dependency>
     </dependencies>
     <properties>
         <!-- the default value is a repeated flag from the command line, since blank value is not allowed -->
diff --git a/server/pom.xml b/server/pom.xml
index 499f7b5447..74db961540 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -49,13 +49,6 @@
             <version>${project.parent.version}</version>
             <scope>runtime</scope>
         </dependency>
-        <dependency>
-            <!-- This is needed to bundle the web console -->
-            <groupId>org.apache.druid</groupId>
-            <artifactId>druid-console</artifactId>
-            <version>${project.parent.version}</version>
-            <scope>runtime</scope>
-        </dependency>
         <dependency>
             <groupId>org.apache.druid</groupId>
             <artifactId>druid-core</artifactId>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org