Skip to content

Commit

Permalink
🎨 #2530【公共问题】修复 pull-parser 依赖传递导致spring boot 2.6.3无法启动
Browse files Browse the repository at this point in the history
  • Loading branch information
azouever committed Feb 23, 2022
1 parent c90e4b9 commit 6c466f0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions weixin-java-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.3</version>
<exclusions>
<exclusion>
<groupId>pull-parser</groupId>
<artifactId>pull-parser</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
Expand Down

1 comment on commit 6c466f0

@azouever
Copy link
Member Author

@azouever azouever commented on 6c466f0 Feb 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

当时的问题是:
使用maven引入可以启动
使用gradle引入不能启动

Please sign in to comment.