You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2023/04/25 03:43:23 UTC

[inlong] branch master updated: [INLONG-7910][Docker] Exclude the change-xxx.sql files for the docker-compose package (#7911)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e8bfebe59 [INLONG-7910][Docker] Exclude the change-xxx.sql files for the docker-compose package (#7911)
e8bfebe59 is described below

commit e8bfebe591473e34f6c836d0629f6200427ec739
Author: Charles Zhang <do...@apache.org>
AuthorDate: Tue Apr 25 11:43:17 2023 +0800

    [INLONG-7910][Docker] Exclude the change-xxx.sql files for the docker-compose package (#7911)
---
 inlong-distribution/src/main/assemblies/release.xml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/inlong-distribution/src/main/assemblies/release.xml b/inlong-distribution/src/main/assemblies/release.xml
index aeb0d376a..1eb5e7970 100644
--- a/inlong-distribution/src/main/assemblies/release.xml
+++ b/inlong-distribution/src/main/assemblies/release.xml
@@ -174,17 +174,17 @@
         <fileSet>
             <directory>../inlong-audit/audit-release/target/apache-inlong-audit-${project.version}-bin/sql</directory>
             <outputDirectory>../docker/docker-compose/sql</outputDirectory>
-            <excludes>
-                <exclude>apache_inlong_audit_clickhouse.sql</exclude>
-            </excludes>
+            <includes>
+                <include>apache_inlong_audit.sql</include>
+            </includes>
         </fileSet>
         <!-- package sql file for docker compose-->
         <fileSet>
             <directory>../inlong-manager/manager-web/target/apache-inlong-manager-web-${project.version}-bin/sql</directory>
             <outputDirectory>../docker/docker-compose/sql</outputDirectory>
-            <excludes>
-                <exclude>changes-1.5.0.sql</exclude>
-            </excludes>
+            <includes>
+                <include>apache_inlong_manager.sql</include>
+            </includes>
         </fileSet>
     </fileSets>