This is an automated email from the ASF dual-hosted git repository.
leebai pushed a commit to branch dev-1.0.3
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git
The following commit(s) were added to refs/heads/dev-1.0.3 by this push:
new 5e22fc1 optimize the packaging logic of Linkis (#1283)
5e22fc1 is described below
commit 5e22fc115abde2e2bd560ddc5b301c4c6840851b
Author: peacewong <[email protected]>
AuthorDate: Fri Jan 7 22:01:09 2022 +0800
optimize the packaging logic of Linkis (#1283)
* add License to header
* remove unnecessary zip compression steps in the submodule close #1282
* Modify the compressed package under linkis package as a directory close
#1282
---
.../assembly-combined/pom.xml | 4 +-
.../src/main/assembly/distribution.xml | 1 -
.../src/main/assembly/assembly.xml | 1 -
assembly-combined-package/bin/checkEnv.sh | 1 -
assembly-combined-package/bin/install.sh | 21 +++---
.../{config => deploy-config}/db.sh | 0
.../{config => deploy-config}/linkis-env.sh | 2 +-
assembly-combined-package/pom.xml | 2 +-
.../src/main/assembly/assembly.xml | 11 ++--
.../src/main/assembly/distribution.xml | 1 -
.../linkis-computation-client/pom.xml | 30 ---------
.../src/main/assembly/distribution.xml | 75 ----------------------
.../src/main/assembly/distribution.xml | 1 -
.../linkis-jdbc-driver/pom.xml | 5 +-
.../tableau_plugin/connection-dialog.tcd | 16 +++++
.../tableau_plugin/connectionResolver.tdr | 16 +++++
.../linkis-jdbc-driver/tableau_plugin/dialect.tdd | 16 +++++
.../linkis-jdbc-driver/tableau_plugin/version.txt | 1 -
.../src/main/assembly/distribution.xml | 1 -
.../src/main/assembly/distribution.xml | 1 -
.../linkis-publicservice/distribution.xml | 1 -
21 files changed, 69 insertions(+), 138 deletions(-)
diff --git a/assembly-combined-package/assembly-combined/pom.xml
b/assembly-combined-package/assembly-combined/pom.xml
index 0a6a88d..d96f136 100644
--- a/assembly-combined-package/assembly-combined/pom.xml
+++ b/assembly-combined-package/assembly-combined/pom.xml
@@ -26,7 +26,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>apache-linkis-combined</artifactId>
+ <artifactId>linkis-package</artifactId>
<modules>
<module>public-module-combined</module>
@@ -66,7 +66,7 @@
</goals>
<configuration>
<skipAssembly>false</skipAssembly>
-
<finalName>apache-linkis-${linkis.version}-incubating-dist</finalName>
+ <finalName>linkis-package</finalName>
<appendAssemblyId>false</appendAssemblyId>
<attach>false</attach>
<descriptors>
diff --git
a/assembly-combined-package/assembly-combined/public-module-combined/src/main/assembly/distribution.xml
b/assembly-combined-package/assembly-combined/public-module-combined/src/main/assembly/distribution.xml
index 590a961..d9cdcc6 100644
---
a/assembly-combined-package/assembly-combined/public-module-combined/src/main/assembly/distribution.xml
+++
b/assembly-combined-package/assembly-combined/public-module-combined/src/main/assembly/distribution.xml
@@ -23,7 +23,6 @@
<id>module</id>
<formats>
<format>dir</format>
- <format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<!-- <baseDirectory>lib</baseDirectory>-->
diff --git
a/assembly-combined-package/assembly-combined/src/main/assembly/assembly.xml
b/assembly-combined-package/assembly-combined/src/main/assembly/assembly.xml
index d6db5a3..69d95b7 100644
--- a/assembly-combined-package/assembly-combined/src/main/assembly/assembly.xml
+++ b/assembly-combined-package/assembly-combined/src/main/assembly/assembly.xml
@@ -19,7 +19,6 @@
<assembly>
<id>dist</id>
<formats>
- <format>tar.gz</format>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
diff --git a/assembly-combined-package/bin/checkEnv.sh
b/assembly-combined-package/bin/checkEnv.sh
index e8cf4c1..4fadcf1 100644
--- a/assembly-combined-package/bin/checkEnv.sh
+++ b/assembly-combined-package/bin/checkEnv.sh
@@ -39,5 +39,4 @@ need_cmd mysql
need_cmd telnet
need_cmd tar
need_cmd sed
-need_cmd dos2unix
echo "<-----end to check used cmd---->"
diff --git a/assembly-combined-package/bin/install.sh
b/assembly-combined-package/bin/install.sh
index bdf0f76..e0f127e 100644
--- a/assembly-combined-package/bin/install.sh
+++ b/assembly-combined-package/bin/install.sh
@@ -59,7 +59,7 @@ function checkHadoopAndHive(){
hadoopVersion="`hdfs version`"
defaultHadoopVersion="2.7"
checkversion "$hadoopVersion" $defaultHadoopVersion hadoop
- checkversion "$(whereis hive)" "1.2" hive
+ checkversion "$(whereis hive)" "2.3" hive
}
function checkversion(){
@@ -114,8 +114,8 @@ isSuccess "check env"
##load config
echo "step1:load config "
-export
LINKIS_CONFIG_PATH=${LINKIS_CONFIG_PATH:-"${workDir}/config/linkis-env.sh"}
-export
LINKIS_DB_CONFIG_PATH=${LINKIS_DB_CONFIG_PATH:-"${workDir}/config/db.sh"}
+export
LINKIS_CONFIG_PATH=${LINKIS_CONFIG_PATH:-"${workDir}/deploy-config/linkis-env.sh"}
+export
LINKIS_DB_CONFIG_PATH=${LINKIS_DB_CONFIG_PATH:-"${workDir}/deploy-config/db.sh"}
source ${LINKIS_CONFIG_PATH}
source ${LINKIS_DB_CONFIG_PATH}
@@ -173,7 +173,6 @@ isSuccess "create $WORKSPACE_USER_ROOT_PATH directory"
elif [[ $HDFS_USER_ROOT_PATH == hdfs://* ]];then
localRootDir=${HDFS_USER_ROOT_PATH#hdfs://}
hdfs dfs -mkdir -p $localRootDir/$deployUser
- hdfs dfs -chmod -R 775 $localRootDir/$deployUser
else
echo "does not support $HDFS_USER_ROOT_PATH filesystem types"
fi
@@ -191,7 +190,7 @@ isSuccess "create $WORKSPACE_USER_ROOT_PATH directory"
elif [[ $RESULT_SET_ROOT_PATH == hdfs://* ]];then
localRootDir=${RESULT_SET_ROOT_PATH#hdfs://}
hdfs dfs -mkdir -p $localRootDir/$deployUser
- hdfs dfs -chmod -R 775 $localRootDir/$deployUser
+
else
echo "does not support $RESULT_SET_ROOT_PATH filesystem types"
fi
@@ -211,15 +210,15 @@ echo "create dir LINKIS_HOME: $LINKIS_HOME"
sudo mkdir -p $LINKIS_HOME;sudo chown -R $deployUser:$deployUser $LINKIS_HOME
isSuccess "Create the dir of $LINKIS_HOME"
-LINKIS_PACKAGE=${workDir}/apache-linkis-${LINKIS_VERSION}-incubating-dist.tar.gz
+LINKIS_PACKAGE=${workDir}/linkis-package
-if ! test -e ${LINKIS_PACKAGE}; then
+if ! test -d ${LINKIS_PACKAGE}; then
echo "**********Error: please put ${LINKIS_PACKAGE} in $workDir! "
exit 1
else
- echo "Start to unzip ${LINKIS_PACKAGE} ."
- tar -xzf ${LINKIS_PACKAGE} -C $LINKIS_HOME
- isSuccess "Unzip ${LINKIS_PACKAGE} to $LINKIS_HOME"
+ echo "Start to cp ${LINKIS_PACKAGE} to $LINKIS_HOME."
+ cp -r $LINKIS_PACKAGE/* $LINKIS_HOME
+ isSuccess "cp ${LINKIS_PACKAGE} to $LINKIS_HOME"
fi
cp ${LINKIS_CONFIG_PATH} $LINKIS_HOME/conf
@@ -410,5 +409,5 @@ then
fi
-echo "Congratulations! You have installed Linkis $LINKIS_VERSION successfully,
please use sbin/linkis-start-all.sh to start it!"
+echo "Congratulations! You have installed Linkis $LINKIS_VERSION successfully,
please use sh $LINKIS_HOME/sbin/linkis-start-all.sh to start it!"
echo "Your default account password is$deployUser/$defaultPwd"
diff --git a/assembly-combined-package/config/db.sh
b/assembly-combined-package/deploy-config/db.sh
similarity index 100%
rename from assembly-combined-package/config/db.sh
rename to assembly-combined-package/deploy-config/db.sh
diff --git a/assembly-combined-package/config/linkis-env.sh
b/assembly-combined-package/deploy-config/linkis-env.sh
similarity index 99%
rename from assembly-combined-package/config/linkis-env.sh
rename to assembly-combined-package/deploy-config/linkis-env.sh
index da1225d..4adcfc4 100644
--- a/assembly-combined-package/config/linkis-env.sh
+++ b/assembly-combined-package/deploy-config/linkis-env.sh
@@ -133,7 +133,7 @@ CS_PORT=9108
export SERVER_HEAP_SIZE="512M"
##The decompression directory and the installation directory need to be
inconsistent
-LINKIS_HOME=/appcom/Install/LinkisInstall
+#LINKIS_HOME=/appcom/Install/LinkisInstall
LINKIS_VERSION=1.0.3
diff --git a/assembly-combined-package/pom.xml
b/assembly-combined-package/pom.xml
index 2ad0aec..006bd78 100644
--- a/assembly-combined-package/pom.xml
+++ b/assembly-combined-package/pom.xml
@@ -30,7 +30,7 @@
<module>assembly-combined</module>
</modules>
- <artifactId>apache-linkis-combined-package</artifactId>
+ <artifactId>linkis-install-package</artifactId>
<packaging>pom</packaging>
<build>
<plugins>
diff --git a/assembly-combined-package/src/main/assembly/assembly.xml
b/assembly-combined-package/src/main/assembly/assembly.xml
index 3772b87..68f3444 100644
--- a/assembly-combined-package/src/main/assembly/assembly.xml
+++ b/assembly-combined-package/src/main/assembly/assembly.xml
@@ -60,9 +60,9 @@
<fileSet>
<directory>
- config/
+ deploy-config/
</directory>
- <outputDirectory>config</outputDirectory>
+ <outputDirectory>deploy-config</outputDirectory>
<includes>
<include>**/*</include>
</includes>
@@ -72,13 +72,12 @@
<fileSet>
<directory>
- assembly-combined/target/
+ assembly-combined/target/linkis-package
</directory>
- <outputDirectory></outputDirectory>
+ <outputDirectory>linkis-package</outputDirectory>
<includes>
-
<include>apache-linkis-${linkis.version}-incubating-dist.tar.gz</include>
+ <include>**/*</include>
</includes>
- <fileMode>0777</fileMode>
</fileSet>
</fileSets>
diff --git
a/linkis-computation-governance/linkis-client/linkis-cli/linkis-cli-application/src/main/assembly/distribution.xml
b/linkis-computation-governance/linkis-client/linkis-cli/linkis-cli-application/src/main/assembly/distribution.xml
index 8a61652..8bc0cdf 100644
---
a/linkis-computation-governance/linkis-client/linkis-cli/linkis-cli-application/src/main/assembly/distribution.xml
+++
b/linkis-computation-governance/linkis-client/linkis-cli/linkis-cli-application/src/main/assembly/distribution.xml
@@ -22,7 +22,6 @@
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.3
http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>linkis-cli</id>
<formats>
- <format>tar.gz</format>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
diff --git
a/linkis-computation-governance/linkis-client/linkis-computation-client/pom.xml
b/linkis-computation-governance/linkis-client/linkis-computation-client/pom.xml
index 150d603..577cab0 100644
---
a/linkis-computation-governance/linkis-client/linkis-computation-client/pom.xml
+++
b/linkis-computation-governance/linkis-client/linkis-computation-client/pom.xml
@@ -90,36 +90,6 @@
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>3.2.0</version>
- <inherited>false</inherited>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <descriptors>
-
<descriptor>src/main/assembly/distribution.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <skipAssembly>false</skipAssembly>
- <finalName>out</finalName>
- <appendAssemblyId>false</appendAssemblyId>
- <attach>false</attach>
- <descriptors>
-
<descriptor>src/main/assembly/distribution.xml</descriptor>
- </descriptors>
- </configuration>
- </plugin>
-
</plugins>
<resources>
<resource>
diff --git
a/linkis-computation-governance/linkis-client/linkis-computation-client/src/main/assembly/distribution.xml
b/linkis-computation-governance/linkis-client/linkis-computation-client/src/main/assembly/distribution.xml
deleted file mode 100644
index 11ddd67..0000000
---
a/linkis-computation-governance/linkis-client/linkis-computation-client/src/main/assembly/distribution.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- ~ Licensed to the Apache Software Foundation (ASF) under one or more
- ~ contributor license agreements. See the NOTICE file distributed with
- ~ this work for additional information regarding copyright ownership.
- ~ The ASF licenses this file to You under the Apache License, Version 2.0
- ~ (the "License"); you may not use this file except in compliance with
- ~ the License. You may obtain a copy of the License at
- ~
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
-
-<assembly
-
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.3"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.3
http://maven.apache.org/xsd/assembly-1.1.2.xsd">
- <id>linkis-computation-client</id>
- <formats>
- <format>dir</format>
- <format>zip</format>
- </formats>
- <includeBaseDirectory>false</includeBaseDirectory>
- <baseDirectory>linkis-computation-client</baseDirectory>
-
- <dependencySets>
- <dependencySet>
- <!-- Enable access to all projects in the current multimodule
build! <useAllReactorProjects>true</useAllReactorProjects> -->
- <!-- Now, select which projects to include in this module-set. -->
- <outputDirectory>lib</outputDirectory>
- <useProjectArtifact>true</useProjectArtifact>
- <useTransitiveDependencies>true</useTransitiveDependencies>
- <unpack>false</unpack>
- <useStrictFiltering>true</useStrictFiltering>
- <useTransitiveFiltering>true</useTransitiveFiltering>
- <excludes>
- </excludes>
- </dependencySet>
- </dependencySets>
-
- <fileSets>
- <fileSet>
- <directory>${basedir}/src/main/resources</directory>
- <includes>
- <include>*</include>
- </includes>
- <fileMode>0777</fileMode>
- <outputDirectory>conf</outputDirectory>
- <lineEnding>unix</lineEnding>
- </fileSet>
- <!--<fileSet>
- <directory>${basedir}/bin</directory>
- <includes>
- <include>*</include>
- </includes>
- <fileMode>0777</fileMode>
- <outputDirectory>bin</outputDirectory>
- <lineEnding>unix</lineEnding>
- </fileSet>
- <fileSet>
- <directory>.</directory>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- <outputDirectory>logs</outputDirectory>
- </fileSet>-->
- </fileSets>
-
-</assembly>
-
diff --git
a/linkis-computation-governance/linkis-entrance/src/main/assembly/distribution.xml
b/linkis-computation-governance/linkis-entrance/src/main/assembly/distribution.xml
index 15ec287..0612554 100644
---
a/linkis-computation-governance/linkis-entrance/src/main/assembly/distribution.xml
+++
b/linkis-computation-governance/linkis-entrance/src/main/assembly/distribution.xml
@@ -23,7 +23,6 @@
<id>linkis-ujes-spark-entrance</id>
<formats>
<format>dir</format>
- <format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>linkis-ujes-linkis-entrance</baseDirectory>
diff --git a/linkis-computation-governance/linkis-jdbc-driver/pom.xml
b/linkis-computation-governance/linkis-jdbc-driver/pom.xml
index e9d0f6c..d2b50e5 100644
--- a/linkis-computation-governance/linkis-jdbc-driver/pom.xml
+++ b/linkis-computation-governance/linkis-jdbc-driver/pom.xml
@@ -78,7 +78,6 @@
<configuration>
<archive>
<manifest>
- <!--这里指定要运行的main类-->
<mainClass>org.apache.linkis.ujes.jdbc.UJESSQLDriverMain</mainClass>
</manifest>
</archive>
@@ -88,8 +87,8 @@
</configuration>
<executions>
<execution>
- <id>make-assembly</id> <!-- 此处指定继承合并 -->
- <phase>package</phase> <!-- 绑定到打包阶段 -->
+ <id>make-assembly</id>
+ <phase>package</phase>
<goals>
<goal>single</goal>
</goals>
diff --git
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connection-dialog.tcd
b/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connection-dialog.tcd
index ef1f01a..5155f85 100644
---
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connection-dialog.tcd
+++
b/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connection-dialog.tcd
@@ -1,3 +1,19 @@
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one or more
+ ~ contributor license agreements. See the NOTICE file distributed with
+ ~ this work for additional information regarding copyright ownership.
+ ~ The ASF licenses this file to You under the Apache License, Version 2.0
+ ~ (the "License"); you may not use this file except in compliance with
+ ~ the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ -->
<connection-dialog class='linkis_jdbc'>
<connection-config>
<authentication-mode value='Basic' />
diff --git
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connectionResolver.tdr
b/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connectionResolver.tdr
index bc17b3e..502256f 100644
---
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connectionResolver.tdr
+++
b/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/connectionResolver.tdr
@@ -1,4 +1,20 @@
<?xml version='1.0' encoding='utf-8' ?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one or more
+ ~ contributor license agreements. See the NOTICE file distributed with
+ ~ this work for additional information regarding copyright ownership.
+ ~ The ASF licenses this file to You under the Apache License, Version 2.0
+ ~ (the "License"); you may not use this file except in compliance with
+ ~ the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ -->
<tdr class='linkis_jdbc'>
<connection-resolver>
<connection-builder>
diff --git
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/dialect.tdd
b/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/dialect.tdd
index c6b6c71..62c716d 100644
---
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/dialect.tdd
+++
b/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/dialect.tdd
@@ -1,3 +1,19 @@
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one or more
+ ~ contributor license agreements. See the NOTICE file distributed with
+ ~ this work for additional information regarding copyright ownership.
+ ~ The ASF licenses this file to You under the Apache License, Version 2.0
+ ~ (the "License"); you may not use this file except in compliance with
+ ~ the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ -->
<dialect name='HiveDialectSDK'
base='HiveDialect'
class='linkis_jdbc'
diff --git
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/version.txt
b/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/version.txt
deleted file mode 100644
index afaf360..0000000
---
a/linkis-computation-governance/linkis-jdbc-driver/tableau_plugin/version.txt
+++ /dev/null
@@ -1 +0,0 @@
-1.0.0
\ No newline at end of file
diff --git
a/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/assembly/distribution.xml
b/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/assembly/distribution.xml
index dfbb145..6cca992 100644
---
a/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/assembly/distribution.xml
+++
b/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/assembly/distribution.xml
@@ -23,7 +23,6 @@
<id>linkis-application-manager</id>
<formats>
<format>dir</format>
- <format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>linkis-application-manager</baseDirectory>
diff --git
a/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-server/src/main/assembly/distribution.xml
b/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-server/src/main/assembly/distribution.xml
index 43b788a..45c7a61 100644
---
a/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-server/src/main/assembly/distribution.xml
+++
b/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-server/src/main/assembly/distribution.xml
@@ -23,7 +23,6 @@
<id>linkis-application-manager</id>
<formats>
<format>dir</format>
- <format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>linkis-engineconn-plugin-server</baseDirectory>
diff --git a/linkis-public-enhancements/linkis-publicservice/distribution.xml
b/linkis-public-enhancements/linkis-publicservice/distribution.xml
index 060bf03..a3d5699 100644
--- a/linkis-public-enhancements/linkis-publicservice/distribution.xml
+++ b/linkis-public-enhancements/linkis-publicservice/distribution.xml
@@ -23,7 +23,6 @@
<id>linkis-publicservice</id>
<formats>
<format>dir</format>
- <format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>linkis-publicservice</baseDirectory>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]