diff --git a/README.md b/README.md
index 71d2ab3..4958a1f 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,16 @@
-# Tauris - 日志处理、清洗与转发工具
+# Tauris
-## 背景
+日志处理、清洗与传输工具,你可以使用tauris作为
+* 日志传输工具
+* 消息适配器
+* 阿里云日志服务和消息服务的客户端
+* 分析日志输出监控指标数据的转换器
-## Tauris能做什么?
-* 它可以作为日志传输工具
-* 它可以作为消息适配器
-* 它可以作为阿里云日志服务和消息服务的客户端
-* 它可以分析日志得到监控数据
-
-Tauris在设计思想和配置方式方面借鉴了[logstash](https://www.elastic.co/cn/products/logstash)。
-
-# 目录
+## 目录
1. [Introduction](docs/introduction.md)
2. [Installation](docs/installation.md)
3. [Tutorial](docs/tutorial.md)
@@ -23,3 +19,12 @@ Tauris在设计思想和配置方式方面借鉴了[logstash](https://www.elasti
6. [Plugin References](docs/plugins/index.md)
7. [Use Cases](docs/usecases.md)
+
+
+## License
+
+[Licensed under the Apache License, Version 2.0](LICENSE).
+
+## 特别说明
+
+Tauris在设计思想和配置方式方面借鉴了[logstash](https://www.elastic.co/cn/products/logstash)。
diff --git a/config/tauris.log4j.xml b/config/tauris.log4j.xml
index 4d2aa1c..6649cbb 100644
--- a/config/tauris.log4j.xml
+++ b/config/tauris.log4j.xml
@@ -1,7 +1,7 @@
@@ -61,4 +61,4 @@
-
\ No newline at end of file
+
diff --git a/pom.xml b/pom.xml
index 8a6de49..8ff2820 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
4.0.0
com.aliyun.tauris
tauris-parent
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
pom
Tauris
@@ -31,6 +31,7 @@
tauris-plugins-filter
tauris-plugins-bundle
tauris-plugins-resource
+ tauris-example
@@ -309,9 +310,9 @@
- net.sf.opencsv
+ com.opencsv
opencsv
- 2.3
+ 4.5
diff --git a/tauris-boot/pom.xml b/tauris-boot/pom.xml
index 2c94321..b476e26 100644
--- a/tauris-boot/pom.xml
+++ b/tauris-boot/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-boot
diff --git a/tauris-codecs/pom.xml b/tauris-codecs/pom.xml
index 3455e65..dfbc123 100644
--- a/tauris-codecs/pom.xml
+++ b/tauris-codecs/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-codecs
@@ -30,7 +30,7 @@
- net.sf.opencsv
+ com.opencsv
opencsv
diff --git a/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVDecoder.java b/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVDecoder.java
index 2acca59..63c6d59 100644
--- a/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVDecoder.java
+++ b/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVDecoder.java
@@ -1,10 +1,11 @@
package com.aliyun.tauris.plugins.codec;
-import au.com.bytecode.opencsv.CSVParser;
import com.aliyun.tauris.DecodeException;
import com.aliyun.tauris.TEvent;
import com.aliyun.tauris.annotations.Name;
import com.aliyun.tauris.annotations.Required;
+import com.opencsv.CSVParser;
+import com.opencsv.CSVParserBuilder;
import javax.annotation.Nullable;
import java.io.IOException;
@@ -30,10 +31,9 @@ public class CSVDecoder extends AbstractDecoder {
boolean strict = false;
- private CSVParser parser;
+ private ThreadLocal threadLocal = new ThreadLocal<>();
public void init() {
- parser = new CSVParser(separator, quotechar, escape);
}
@Override
@@ -58,9 +58,18 @@ public TEvent decode(String source) throws DecodeException {
return event;
}
+ private CSVParser getParser() {
+ CSVParser parser = threadLocal.get();
+ if (parser == null) {
+ parser = new CSVParserBuilder().withSeparator(separator).withQuoteChar(quotechar).withEscapeChar(escape).build();
+ threadLocal.set(parser);
+ }
+ return parser;
+ }
+
private void decode(String source, BiConsumer put) throws DecodeException {
try {
- String[] cols = parser.parseLine(source);
+ String[] cols = getParser().parseLine(source);
if (strict && cols.length != fields.length) {
throw new DecodeException("column's length not match");
}
diff --git a/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVPrinter.java b/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVPrinter.java
index fe51fb6..9467aa2 100644
--- a/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVPrinter.java
+++ b/tauris-codecs/src/main/java/com/aliyun/tauris/plugins/codec/CSVPrinter.java
@@ -1,12 +1,12 @@
package com.aliyun.tauris.plugins.codec;
-import au.com.bytecode.opencsv.CSVWriter;
import com.aliyun.tauris.EncodeException;
import com.aliyun.tauris.TEncoder;
import com.aliyun.tauris.TEvent;
import com.aliyun.tauris.TPrinter;
import com.aliyun.tauris.annotations.Name;
import com.aliyun.tauris.annotations.Required;
+import com.opencsv.CSVWriter;
import javax.annotation.concurrent.NotThreadSafe;
import java.io.*;
@@ -51,7 +51,7 @@ public CSVPrinter(String[] fields, char separator, char quotechar, char escape,
@Override
public TPrinter wrap(OutputStream out) {
CSVPrinter printer = new CSVPrinter(fields, separator, quotechar, escape, delimiter);
- printer.writer = new CSVWriter(new OutputStreamWriter(out), separator, quotechar, escape);
+ printer.writer = new CSVWriter(new OutputStreamWriter(out), separator, quotechar, escape, delimiter);
printer.buffer = new String[fields.length];
return printer;
}
diff --git a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/CSVCodecTest.java b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/CSVCodecTest.java
index 3840a99..8e52340 100644
--- a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/CSVCodecTest.java
+++ b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/CSVCodecTest.java
@@ -9,7 +9,7 @@
/**
* Class KVCodecTest
*
- * @author chuanshi.zl
+ * @author zhanglei
* @date 2018-09-05
*/
public class CSVCodecTest {
diff --git a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KLVCodecTest.java b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KLVCodecTest.java
index 876492b..4573ad8 100644
--- a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KLVCodecTest.java
+++ b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KLVCodecTest.java
@@ -10,7 +10,7 @@
/**
* Class KVCodecTest
*
- * @author chuanshi.zl
+ * @author zhanglei
* @date 2018-09-05
*/
public class KLVCodecTest {
diff --git a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KVSCodecTest.java b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KVSCodecTest.java
index 653d51f..9a23511 100644
--- a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KVSCodecTest.java
+++ b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/KVSCodecTest.java
@@ -9,7 +9,7 @@
/**
* Class KVCodecTest
*
- * @author chuanshi.zl
+ * @author zhanglei
* @date 2018-09-05
*/
public class KVSCodecTest {
diff --git a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/MsgPackCodecTest.java b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/MsgPackCodecTest.java
index 2506734..3fdf6a6 100644
--- a/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/MsgPackCodecTest.java
+++ b/tauris-codecs/src/test/java/com/aliyun/tauris/plugins/codec/MsgPackCodecTest.java
@@ -12,7 +12,7 @@
/**
* Class KVCodecTest
*
- * @author chuanshi.zl
+ * @author zhanglei
* @date 2018-09-05
*/
public class MsgPackCodecTest {
diff --git a/tauris-config/pom.xml b/tauris-config/pom.xml
index 8d6d6b2..e2cef52 100644
--- a/tauris-config/pom.xml
+++ b/tauris-config/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-config
diff --git a/tauris-core/pom.xml b/tauris-core/pom.xml
index 738172b..267a3b0 100644
--- a/tauris-core/pom.xml
+++ b/tauris-core/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-core
diff --git a/tauris-core/src/main/java/com/aliyun/tauris/TFilterGroup.java b/tauris-core/src/main/java/com/aliyun/tauris/TFilterGroup.java
index 52491e1..56d928f 100644
--- a/tauris-core/src/main/java/com/aliyun/tauris/TFilterGroup.java
+++ b/tauris-core/src/main/java/com/aliyun/tauris/TFilterGroup.java
@@ -79,7 +79,7 @@ public TEvent filter(TEvent event) {
}
return event;
} catch (Exception e) {
- logger.ERROR("filter %s raise an uncatched exception", e, lastFilter.id());
+ logger.EXCEPTION(String.format("filter %s raise an uncatched exception", lastFilter.id()), e);
return null;
}
}
diff --git a/tauris-core/src/main/java/com/aliyun/tauris/TPluginGroup.java b/tauris-core/src/main/java/com/aliyun/tauris/TPluginGroup.java
index 3664b9a..be277c8 100644
--- a/tauris-core/src/main/java/com/aliyun/tauris/TPluginGroup.java
+++ b/tauris-core/src/main/java/com/aliyun/tauris/TPluginGroup.java
@@ -3,7 +3,7 @@
/**
* Class TPluginGroup
*
- * @author chuanshi.zl
+ * @author Zhangei
* @date 2018-09-25
*/
public class TPluginGroup implements TPlugin {
diff --git a/tauris-core/src/main/java/com/aliyun/tauris/utils/TLogger.java b/tauris-core/src/main/java/com/aliyun/tauris/utils/TLogger.java
index 3ce92d6..2a1ef53 100644
--- a/tauris-core/src/main/java/com/aliyun/tauris/utils/TLogger.java
+++ b/tauris-core/src/main/java/com/aliyun/tauris/utils/TLogger.java
@@ -80,6 +80,13 @@ public void EXCEPTION(Throwable e) {
this.error(msg, e);
}
+ public void EXCEPTION(String msg, Throwable e) {
+ if (this.pluginId != null) {
+ this.error("[" + pluginId + "]" + msg);
+ }
+ this.error(msg, e);
+ }
+
public void WARN2(String message, String detail) {
if (verbose && detail != null) {
message = message + ", verbose: '" + detail + "'";
diff --git a/tauris-plugins-base/pom.xml b/tauris-plugins-base/pom.xml
index 4db7543..c96ba52 100644
--- a/tauris-plugins-base/pom.xml
+++ b/tauris-plugins-base/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-base
diff --git a/tauris-plugins-bundle/http/pom.xml b/tauris-plugins-bundle/http/pom.xml
index a63bfd4..f67adf7 100644
--- a/tauris-plugins-bundle/http/pom.xml
+++ b/tauris-plugins-bundle/http/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-http
diff --git a/tauris-plugins-bundle/influxdb/pom.xml b/tauris-plugins-bundle/influxdb/pom.xml
index 8bc6bd0..549a79f 100644
--- a/tauris-plugins-bundle/influxdb/pom.xml
+++ b/tauris-plugins-bundle/influxdb/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-influxdb
diff --git a/tauris-plugins-bundle/influxdb/src/test/java/com/aliyun/tauris/plugins/codec/InfluxdbDecoderTest.java b/tauris-plugins-bundle/influxdb/src/test/java/com/aliyun/tauris/plugins/codec/InfluxdbDecoderTest.java
index ea87e57..c8e5122 100644
--- a/tauris-plugins-bundle/influxdb/src/test/java/com/aliyun/tauris/plugins/codec/InfluxdbDecoderTest.java
+++ b/tauris-plugins-bundle/influxdb/src/test/java/com/aliyun/tauris/plugins/codec/InfluxdbDecoderTest.java
@@ -9,7 +9,7 @@
/**
* Class InfluxdbDecoderTest
*
- * @author chuanshi.zl
+ * @author zhanglei
* @date 2018-09-04
*/
public class InfluxdbDecoderTest {
diff --git a/tauris-plugins-bundle/mns/pom.xml b/tauris-plugins-bundle/mns/pom.xml
index 9017573..bb400cb 100644
--- a/tauris-plugins-bundle/mns/pom.xml
+++ b/tauris-plugins-bundle/mns/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-mns
diff --git a/tauris-plugins-bundle/pom.xml b/tauris-plugins-bundle/pom.xml
index 1db2dce..b1ed5d1 100644
--- a/tauris-plugins-bundle/pom.xml
+++ b/tauris-plugins-bundle/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
tauris-plugins-bundle
pom
diff --git a/tauris-plugins-bundle/scroll/pom.xml b/tauris-plugins-bundle/scroll/pom.xml
index 3a761b6..60bd975 100644
--- a/tauris-plugins-bundle/scroll/pom.xml
+++ b/tauris-plugins-bundle/scroll/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-scroll
diff --git a/tauris-plugins-bundle/sls/pom.xml b/tauris-plugins-bundle/sls/pom.xml
index 148ed04..c16aa39 100644
--- a/tauris-plugins-bundle/sls/pom.xml
+++ b/tauris-plugins-bundle/sls/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-sls
diff --git a/tauris-plugins-bundle/syslog/pom.xml b/tauris-plugins-bundle/syslog/pom.xml
index fda96f5..cb90d40 100644
--- a/tauris-plugins-bundle/syslog/pom.xml
+++ b/tauris-plugins-bundle/syslog/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-syslog
diff --git a/tauris-plugins-bundle/tcp/pom.xml b/tauris-plugins-bundle/tcp/pom.xml
index a154a25..a6f1982 100644
--- a/tauris-plugins-bundle/tcp/pom.xml
+++ b/tauris-plugins-bundle/tcp/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-tcp
diff --git a/tauris-plugins-bundle/udp/pom.xml b/tauris-plugins-bundle/udp/pom.xml
index e2fbb9c..cd632e9 100644
--- a/tauris-plugins-bundle/udp/pom.xml
+++ b/tauris-plugins-bundle/udp/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-bundle
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-bundle-udp
diff --git a/tauris-plugins-filter/codec/pom.xml b/tauris-plugins-filter/codec/pom.xml
index 9aad987..37b6b88 100644
--- a/tauris-plugins-filter/codec/pom.xml
+++ b/tauris-plugins-filter/codec/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-filter
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-filter-codec
diff --git a/tauris-plugins-filter/iploc/pom.xml b/tauris-plugins-filter/iploc/pom.xml
index c88668f..81332a0 100644
--- a/tauris-plugins-filter/iploc/pom.xml
+++ b/tauris-plugins-filter/iploc/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-filter
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-filter-iploc
diff --git a/tauris-plugins-filter/keymap/pom.xml b/tauris-plugins-filter/keymap/pom.xml
index aa79ba8..15e6dbe 100644
--- a/tauris-plugins-filter/keymap/pom.xml
+++ b/tauris-plugins-filter/keymap/pom.xml
@@ -6,14 +6,14 @@
tauris-plugins-filter
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-filter-keymap
- net.sf.opencsv
+ com.opencsv
opencsv
diff --git a/tauris-plugins-filter/pom.xml b/tauris-plugins-filter/pom.xml
index 523c7e3..2283ff9 100644
--- a/tauris-plugins-filter/pom.xml
+++ b/tauris-plugins-filter/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
tauris-plugins-filter
pom
diff --git a/tauris-plugins-filter/redis/pom.xml b/tauris-plugins-filter/redis/pom.xml
index 93447ab..c839f88 100644
--- a/tauris-plugins-filter/redis/pom.xml
+++ b/tauris-plugins-filter/redis/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-filter
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-filter-redis
diff --git a/tauris-plugins-filter/ua/pom.xml b/tauris-plugins-filter/ua/pom.xml
index 2df08be..28325fa 100644
--- a/tauris-plugins-filter/ua/pom.xml
+++ b/tauris-plugins-filter/ua/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-filter
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-filter-ua
diff --git a/tauris-plugins-input/pom.xml b/tauris-plugins-input/pom.xml
index b71108b..a402d93 100644
--- a/tauris-plugins-input/pom.xml
+++ b/tauris-plugins-input/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
tauris-plugins-input
pom
diff --git a/tauris-plugins-input/tailer/pom.xml b/tauris-plugins-input/tailer/pom.xml
index 7b4cd49..8ff2330 100644
--- a/tauris-plugins-input/tailer/pom.xml
+++ b/tauris-plugins-input/tailer/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-input
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-input-tailer
diff --git a/tauris-plugins-output/csv/pom.xml b/tauris-plugins-output/csv/pom.xml
index 69d06ad..0426f3f 100644
--- a/tauris-plugins-output/csv/pom.xml
+++ b/tauris-plugins-output/csv/pom.xml
@@ -6,14 +6,14 @@
tauris-plugins-output
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-output-csv
- net.sf.opencsv
+ com.opencsv
opencsv
diff --git a/tauris-plugins-output/dingtalk/pom.xml b/tauris-plugins-output/dingtalk/pom.xml
index 22ee9e8..5b08cb2 100644
--- a/tauris-plugins-output/dingtalk/pom.xml
+++ b/tauris-plugins-output/dingtalk/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-output
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-output-dingtalk
diff --git a/tauris-plugins-output/file/pom.xml b/tauris-plugins-output/file/pom.xml
index d6875fc..1c11319 100644
--- a/tauris-plugins-output/file/pom.xml
+++ b/tauris-plugins-output/file/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-output
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-output-file
diff --git a/tauris-plugins-output/pom.xml b/tauris-plugins-output/pom.xml
index d0dda2a..8d5c8fb 100644
--- a/tauris-plugins-output/pom.xml
+++ b/tauris-plugins-output/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
tauris-plugins-output
pom
diff --git a/tauris-plugins-output/rdb/pom.xml b/tauris-plugins-output/rdb/pom.xml
index 15b187d..cddb8a4 100644
--- a/tauris-plugins-output/rdb/pom.xml
+++ b/tauris-plugins-output/rdb/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-output
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-output-rdb
diff --git a/tauris-plugins-output/smtp/pom.xml b/tauris-plugins-output/smtp/pom.xml
index d883e65..0c3d7f4 100644
--- a/tauris-plugins-output/smtp/pom.xml
+++ b/tauris-plugins-output/smtp/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-output
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-output-smtp
diff --git a/tauris-plugins-output/stats/pom.xml b/tauris-plugins-output/stats/pom.xml
index 9b29b26..d00701b 100644
--- a/tauris-plugins-output/stats/pom.xml
+++ b/tauris-plugins-output/stats/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-output
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-output-stats
diff --git a/tauris-plugins-output/stdout/pom.xml b/tauris-plugins-output/stdout/pom.xml
index 048bc5b..bd61aad 100644
--- a/tauris-plugins-output/stdout/pom.xml
+++ b/tauris-plugins-output/stdout/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-output
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-output-stdout
diff --git a/tauris-plugins-resource/etcd/pom.xml b/tauris-plugins-resource/etcd/pom.xml
index e899267..691cb4c 100644
--- a/tauris-plugins-resource/etcd/pom.xml
+++ b/tauris-plugins-resource/etcd/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-resource
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-resource-etcd
diff --git a/tauris-plugins-resource/oss/pom.xml b/tauris-plugins-resource/oss/pom.xml
index 3d2582b..9c5cd52 100644
--- a/tauris-plugins-resource/oss/pom.xml
+++ b/tauris-plugins-resource/oss/pom.xml
@@ -6,7 +6,7 @@
tauris-plugins-resource
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
jar
tauris-plugins-resource-oss
diff --git a/tauris-plugins-resource/pom.xml b/tauris-plugins-resource/pom.xml
index 9102433..f10878e 100644
--- a/tauris-plugins-resource/pom.xml
+++ b/tauris-plugins-resource/pom.xml
@@ -6,7 +6,7 @@
tauris-parent
com.aliyun.tauris
- 1.4.10-SNAPSHOT
+ 1.4.11-SNAPSHOT
tauris-plugins-resource
pom