Skip to content
Snippets Groups Projects
Unverified Commit 61321410 authored by jimin's avatar jimin Committed by GitHub
Browse files

optimize: optimize maven clean plugin to clear the distribution directory (#3415)

parent 5fb5b384
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ Contributors are welcomed to join the Seata project. Please check [CONTRIBUTING]
* dev-seata@googlegroups.com , for dev/user discussion. [subscribe](mailto:dev-seata+subscribe@googlegroups.com), [unsubscribe](mailto:dev-seata+unsubscribe@googlegroups.com), [archive](https://groups.google.com/forum/#!forum/dev-seata)
<img src="https://img.alicdn.com/tfs/TB1NvtaFrj1gK0jSZFOXXc7GpXa-1218-404.jpg" height="200" width="630">
<img src="https://img.alicdn.com/imgextra/i3/O1CN01FKBxyk25Ffx83dIJc_!!6000000007497-0-tps-1078-354.jpg" height="200" width="630">
## Seata ecosystem
......
......@@ -45,6 +45,7 @@ Seata 是一款开源的分布式事务解决方案,提供高性能和简单
- [[#3397](https://github.com/seata/seata/pull/3397)] 添加更改记录文件夹
- [[#3303](https://github.com/seata/seata/pull/3303)] 支持从nacos单一dataId中读取所有配置
- [[#3380](https://github.com/seata/seata/pull/3380)] 优化globalTransactionScanner监听器
- [[#3415](https://github.com/seata/seata/pull/3415)] 优化 maven clean 插件可清除 distribution 目录
......
......@@ -44,6 +44,7 @@
- [[#3397](https://github.com/seata/seata/pull/3397)] add the change records folder
- [[#3303](https://github.com/seata/seata/pull/3303)] supports reading all configurations from a single Nacos dataId
- [[#3380](https://github.com/seata/seata/pull/3380)] globalTransactionScanner listener optimize
- [[#3415](https://github.com/seata/seata/pull/3415)] optimize maven clean plugin to clear the distribution directory
### test
......
......@@ -126,6 +126,26 @@
<id>release-seata</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<excludeDefaultDirectories>false</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>../distribution</directory>
<includes>
<include>bin/**</include>
<include>conf/**</include>
<include>logs/**</include>
<include>lib/**</include>
<include>seata-server-${revision}/**</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment