[Core] Optimize convert packaging

This commit is contained in:
qianmoQ 2024-07-06 11:15:27 +08:00
parent ce7f2da57c
commit 75d8ecb803
3 changed files with 19 additions and 1 deletions

View File

@ -2,7 +2,7 @@
HOME=$(pwd)
VERSION=2024.03.8-SNAPSHOT
#$HOME/convert/*:$HOME/executor/*"
#$HOME/executor/*"
common_install_handler() {
TYPE=$1
@ -53,8 +53,15 @@ job_install_fs() {
printf "========== Job install fs end ========== \n"
}
job_install_convert() {
printf "========== Job install convert start ========== \n"
common_install_handler "convert"
printf "========== Job install convert end ========== \n"
}
job_install_plugin
job_install_notify
job_install_scheduler
job_install_parser
job_install_fs
job_install_convert

View File

@ -0,0 +1,6 @@
-- Convert list --
datacap-convert-txt
datacap-convert-json
datacap-convert-none
datacap-convert-csv
datacap-convert-xml

View File

@ -86,26 +86,31 @@
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap-convert-txt</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap-convert-json</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap-convert-none</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap-convert-csv</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap-convert-xml</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>