mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-11-29 18:48:23 +08:00
[Core] Optimize convert packaging
This commit is contained in:
parent
ce7f2da57c
commit
75d8ecb803
@ -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
|
||||
|
6
configure/etc/conf/convert.conf
Normal file
6
configure/etc/conf/convert.conf
Normal file
@ -0,0 +1,6 @@
|
||||
-- Convert list --
|
||||
datacap-convert-txt
|
||||
datacap-convert-json
|
||||
datacap-convert-none
|
||||
datacap-convert-csv
|
||||
datacap-convert-xml
|
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user