mirror of https://github.com/apache/druid.git
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 commit8d72225544
. * Revert "Add a test to check if the web-console is correctly integrated" This reverts commitd6ac8f3087
.
This commit is contained in:
parent
5733360dfd
commit
aa9b0900d4
|
@ -39,6 +39,12 @@
|
||||||
<artifactId>druid-services</artifactId>
|
<artifactId>druid-services</artifactId>
|
||||||
<version>${project.parent.version}</version>
|
<version>${project.parent.version}</version>
|
||||||
</dependency>
|
</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>
|
</dependencies>
|
||||||
<properties>
|
<properties>
|
||||||
<!-- the default value is a repeated flag from the command line, since blank value is not allowed -->
|
<!-- the default value is a repeated flag from the command line, since blank value is not allowed -->
|
||||||
|
|
|
@ -49,13 +49,6 @@
|
||||||
<version>${project.parent.version}</version>
|
<version>${project.parent.version}</version>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</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>
|
<dependency>
|
||||||
<groupId>org.apache.druid</groupId>
|
<groupId>org.apache.druid</groupId>
|
||||||
<artifactId>druid-core</artifactId>
|
<artifactId>druid-core</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue