Skip to content

Commit e83d49b

Browse files
authored
optimize: add io.seata package shade (apache#6302)
1 parent ec3a496 commit e83d49b

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

all/pom.xml

+6-1
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,11 @@
324324
<artifactId>seata-saga-spring</artifactId>
325325
<version>${project.version}</version>
326326
</dependency>
327+
<dependency>
328+
<groupId>io.seata</groupId>
329+
<artifactId>seata-all</artifactId>
330+
<version>${project.version}</version>
331+
</dependency>
327332

328333
<!-- spring -->
329334
<dependency>
@@ -639,7 +644,7 @@
639644
<artifactSet>
640645
<includes>
641646
<include>org.apache.seata:*</include>
642-
<include>io.seata:seata-all</include>
647+
<include>io.seata:*</include>
643648
</includes>
644649
</artifactSet>
645650
<transformers>

changes/en-us/2.x.md

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ Add changes here for all PR submitted to the 2.x branch.
8181
- [[#6285](https://github.com/apache/incubator-seata/pull/6285)] optimize time query conditions in the console
8282
- [[#6297](https://github.com/apache/incubator-seata/pull/6297)] fix problem of `maven-pmd-plugin`
8383
- [[#6298](https://github.com/apache/incubator-seata/pull/6298)] repackage name to org.apache.seata
84+
- [[#6302](https://github.com/apache/incubator-seata/pull/6302)] add io.seata package shade
8485
- [[#6306](https://github.com/apache/incubator-seata/pull/6306)] replace some URL to org/apache/seata
8586
- [[#6304](https://github.com/apache/incubator-seata/pull/6304)] disable Publish OSSRH workflow
8687
- [[#6310](https://github.com/apache/incubator-seata/pull/6310)] seata-server compatible io.seata package
@@ -104,6 +105,7 @@ Add changes here for all PR submitted to the 2.x branch.
104105
### refactor:
105106
- [[#6269](https://github.com/apache/incubator-seata/pull/6269)] standardize Seata Exception
106107

108+
107109
### security:
108110
- [[#6069](https://github.com/apache/incubator-seata/pull/6069)] Upgrade Guava dependencies to fix security vulnerabilities
109111
- [[#6145](https://github.com/apache/incubator-seata/pull/6145)] upgrade jettison to 1.5.4

changes/zh-cn/2.x.md

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
- [[#6285](https://github.com/apache/incubator-seata/pull/6285)] 优化控台中时间查询条件不准确的问题
8383
- [[#6297](https://github.com/apache/incubator-seata/pull/6297)] 修复 `maven-pmd-plugin` 相关的问题
8484
- [[#6298](https://github.com/apache/incubator-seata/pull/6298)] 重命名包名为 org.apache.seata
85+
- [[#6302](https://github.com/apache/incubator-seata/pull/6302)] 增加 io.seata shade 打包方案
8586
- [[#6306](https://github.com/apache/incubator-seata/pull/6306)] 替换一些URL 至 org/apache/seata
8687
- [[#6304](https://github.com/apache/incubator-seata/pull/6304)] 禁用 OSSRH 发布工作流
8788
- [[#6310](https://github.com/apache/incubator-seata/pull/6310)] seata-server兼容io.seata包

compatible/pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,16 @@
117117
<version>${project.version}</version>
118118
</dependency>
119119
</dependencies>
120+
<build>
121+
<plugins>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-deploy-plugin</artifactId>
125+
<version>2.8.2</version>
126+
<configuration>
127+
<skip>true</skip>
128+
</configuration>
129+
</plugin>
130+
</plugins>
131+
</build>
120132
</project>

0 commit comments

Comments
 (0)