Skip to content

Commit

Permalink
maven: fix maven-compiler-plugin and maven-resources-plugin execute f…
Browse files Browse the repository at this point in the history
…ailed (#4700)
  • Loading branch information
slievrly committed Jun 17, 2022
1 parent 97333ee commit 95a89d5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions changes/en-us/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Add changes here for all PR submitted to the develop branch.
- [[#4662](https://github.com/seata/seata/pull/4662)] optimize rollback transaction metrics
- [[#4693](https://github.com/seata/seata/pull/4693)] optimize the console navigation bar
- [[#4544](https://github.com/seata/seata/pull/4544)] optimize jackson dependencies in TransactionContextFilterTest
- [[#4700](https://github.com/seata/seata/pull/4700)] fix maven-compiler-plugin and maven-resources-plugin execute failed

### test:

Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- [[#4662](https://github.com/seata/seata/pull/4662)] 优化回滚事务监控指标
- [[#4693](https://github.com/seata/seata/pull/4693)] 优化控制台导航栏
- [[#4544](https://github.com/seata/seata/pull/4544)] 优化测试用例TransactionContextFilterTest中jackson包依赖问题
- [[#4700](https://github.com/seata/seata/pull/4700)] 修复 maven-compiler-plugin 和 maven-resources-plugin 执行失败

### test:

Expand Down
10 changes: 10 additions & 0 deletions console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,14 @@
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/node_modules/**</exclude>
</excludes>
</resource>
</resources>
</build>
</project>
1 change: 1 addition & 0 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@
<configuration>
<mainClass>io.seata.server.ServerApplication</mainClass>
<layout>ZIP</layout>
<attach>false</attach>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 95a89d5

Please sign in to comment.