We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18000f7 commit 3500bf7Copy full SHA for 3500bf7
README.md
@@ -220,6 +220,25 @@ mvn clean test -P travis
220
221
欢迎提交 Issue 和 Pull Request!
222
223
+## QA
224
+
225
+Q: 如果存在com.github.jsqlparser冲突问题,可以在maven配置中忽略掉
226
+A:maven配置如下
227
+```
228
+ <dependency>
229
+ <groupId>com.codingapi.dbstream</groupId>
230
+ <artifactId>dbstream-driver</artifactId>
231
+ <version>${latest.version}</version>
232
+ <exclusions>
233
+ <exclusion>
234
+ <groupId>com.github.jsqlparser</groupId>
235
+ <artifactId>jsqlparser</artifactId>
236
+ </exclusion>
237
+ </exclusions>
238
+</dependency>
239
240
241
242
## 📞 联系方式
243
244
- 项目地址: https://github.com/codingapi/dbstream-driver
0 commit comments