Skip to content

Commit b36b1ac

Browse files
binarywangCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 30f3c7e commit b36b1ac

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,20 @@
122122

123123
#### 方式一:使用 BOM 统一管理版本(推荐)
124124

125-
如果同时使用多个 WxJava 模块,推荐通过 BOM 统一管理版本,无需为每个模块单独指定版本号:
125+
如果同时使用多个 WxJava 模块,推荐通过 BOM 统一管理版本,无需为每个模块单独指定版本号。
126+
`wx-java-bom` 仅从已发布且包含该模块的版本开始提供,请将下面示例中的版本号替换为当前实际发布版本:
126127

127128
```xml
129+
<properties>
130+
<wx-java.version>请替换为当前发布版本</wx-java.version>
131+
</properties>
132+
128133
<dependencyManagement>
129134
<dependencies>
130135
<dependency>
131136
<groupId>com.github.binarywang</groupId>
132137
<artifactId>wx-java-bom</artifactId>
133-
<version>4.8.0</version>
138+
<version>${wx-java.version}</version>
134139
<type>pom</type>
135140
<scope>import</scope>
136141
</dependency>

0 commit comments

Comments
 (0)