Skip to content

Commit

Permalink
bugfix: fix server distribution missing files (apache#3540)
Browse files Browse the repository at this point in the history
  • Loading branch information
slievrly authored Mar 4, 2021
1 parent 36ebcb8 commit 4040644
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 19 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ For more details about principle and design, please go to [Seata wiki page](http

## Maven dependency
```xml
<seata.version>1.4.0</seata.version>
<seata.version>1.4.1</seata.version>

<dependency>
<groupId>io.seata</groupId>
Expand Down Expand Up @@ -123,6 +123,7 @@ Contributors are welcomed to join the Seata project. Please check [CONTRIBUTING]
## Seata ecosystem

* [Seata Ecosystem Entry](https://github.com/seata) - A GitHub group `seata` to gather all Seata relevant projects
* [Seata GoLang](https://github.com/opentrx/seata-golang) - Seata GoLang client and server
* [Seata Samples](https://github.com/seata/seata-samples) - Samples for Seata
* [Seata Docker](https://github.com/seata/seata-docker) - Seata integration with docker
* [Seata K8s](https://github.com/seata/seata-k8s) - Seata integration with k8s
Expand Down
1 change: 1 addition & 0 deletions changes/1.5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Seata 是一款开源的分布式事务解决方案,提供高性能和简单
- [[#3481](https://github.com/seata/seata/pull/3481)] 修复当 consul client 获取集群信息报错时会导致刷新任务中断
- [[#3491](https://github.com/seata/seata/pull/3491)] 修复README.md文件中的拼写错误
- [[#3531](https://github.com/seata/seata/pull/3531)] 修复RedisTransactionStoreManager读取brachTransaction中的NPE
- [[#3540](https://github.com/seata/seata/pull/3540)] 修复server发布打包时缺失文件

### optimize:

Expand Down
1 change: 1 addition & 0 deletions changes/en-us/1.5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
- [[#3481](https://github.com/seata/seata/pull/3481)] fix seata node refresh failure because consul crash
- [[#3491](https://github.com/seata/seata/pull/3491)] fix typo in README.md
- [[#3531](https://github.com/seata/seata/pull/3531)] fix the NPE of RedisTransactionStoreManager when get branch transactions
- [[#3540](https://github.com/seata/seata/pull/3540)] fix server distribution missing files


### optimize:
Expand Down
27 changes: 9 additions & 18 deletions distribution/release-seata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,39 +23,30 @@
<format>zip</format>
</formats>
<fileSets>

<fileSet>
<includes>
<include>plugins/**</include>
</includes>
</fileSet>

<fileSet>
<includes>
<include>conf/**</include>
<include>seata-server-${project.version}/plugins/**</include>
<include>seata-server-${project.version}/conf/**</include>
<include>seata-server-${project.version}/lib/**</include>
<include>seata-server-${project.version}/logs/</include>
</includes>
<excludes>
<exclude>seata-server-${project.version}/lib/mysql-connector-java-*.jar</exclude>
</excludes>
</fileSet>

<fileSet>
<includes>
<include>bin/*</include>
<include>seata-server-${project.version}/bin/*</include>
</includes>
<fileMode>0755</fileMode>
</fileSet>

<fileSet>
<includes>
<include>lib/**</include>
</includes>
<excludes>
<exclude>lib/mysql-connector-java-*.jar</exclude>
</excludes>
</fileSet>
</fileSets>
<files>
<file>
<source>LICENSE-BIN</source>
<destName>LICENSE</destName>
<destName>seata-server-${project.version}/LICENSE</destName>
</file>
</files>

Expand Down

0 comments on commit 4040644

Please sign in to comment.