java中遇到unicode时Sonar抛出错误
我正在尝试使用最小的 Maven pom 在我们的 java 代码上运行声纳。
我可以运行 3 个项目
当我遇到具有 unicode UTF-8 的项目时,sonar:sonar 命令失败!
INFO] Sensor SquidSensor...
INFO] Java AST scan...
INFO] ------------------------------------------------------------------------
ERROR] BUILD ERROR
INFO] ------------------------------------------------------------------------
INFO] Can not execute Sonar
mbedded error: Got an exception - unexpected char: '\', file : D:\Sonar\Projects\AoGServices\src\main\com\mypackage\ao565svc\services\KommunikationPrµferenceOpretServiceBean.java, line : 34
INFO] ------------------------------------------------------------------------
第 34 行的类名带有 "\u00E6"
我如何告诉声纳在 unicode 上工作?
i am trying to run sonar on our java code using a minimum maven pom.
I can run 3 project
When i encounter a project having unicode UTF-8 the sonar:sonar command fails!
INFO] Sensor SquidSensor...
INFO] Java AST scan...
INFO] ------------------------------------------------------------------------
ERROR] BUILD ERROR
INFO] ------------------------------------------------------------------------
INFO] Can not execute Sonar
mbedded error: Got an exception - unexpected char: '\', file : D:\Sonar\Projects\AoGServices\src\main\com\mypackage\ao565svc\services\KommunikationPrµferenceOpretServiceBean.java, line : 34
INFO] ------------------------------------------------------------------------
the line 34 having a class name with "\u00E6"
How can i tell sonar to work on the unicode ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有尝试过这个,但我认为您可以通过将以下内容添加到您的 POM 来解决此问题:
参考资料:
用于源文件编码的 POM 元素
编译器插件-compiler:compile
I haven't tried this, but I think you may be able to fix this by adding the following to your POM:
References:
POM Element for Source File Encoding
Compiler plugin - compiler:compile