我知道这是递归问题,但找不到解决方案。
在构建之后,我在 JENKINS中 运行 SONAR 分析。当Soanar到达Java bytecode scan...它时显示:WARN - Class '.../.../.../...' is not accessible through the ClassLoader。
Java bytecode scan...
WARN - Class '.../.../.../...' is not accessible through the ClassLoader
扫描是一个 Maven的 项目,声纳保持displayin此消息引发许多其他类使用 Maven的 依赖关系 。
该 声纳 的分析是使用 SONAR亚军 。
我在许多帖子中看到,可以通过添加来解决此问题sonar.librairies=/path/to/libraries/*jar,sonar- project.properties但是使用 Maven ,依赖关系不会归类到一个文件夹中。 Jar 的分发位于 Maven存储库 下的不同文件夹下。
sonar.librairies=/path/to/libraries/*jar
sonar- project.properties
那么,如何解决此问题以在没有这些警告的情况下扫描我的代码?
仅供参考:
詹金斯 1.555
声纳 4.2
声纳赛跑者 2.3
Java 1.7
Maven的 3.04
堆栈跟踪 :
09:23:55.605 INFO - Java bytecode scan... 09:23:55.646 WARN - Class 'org/springframework/context/ApplicationContext' is not accessible through the ClassLoader. 09:23:55.656 WARN - Class 'com/mongodb/MongoClient' is not accessible through the ClassLoader. 09:23:55.657 WARN - Class 'com/mongodb/DB' is not accessible through the ClassLoader. 09:23:55.661 WARN - Class 'org/springframework/context/ApplicationContext' is not accessible through the ClassLoader. 09:23:55.662 WARN - Class 'org/springframework/context/ApplicationContext' is not accessible through the ClassLoader. ... 09:23:55.749 WARN - Class 'org/apache/log4j/Logger' is not accessible through the ClassLoader. 09:23:55.773 INFO - Java bytecode scan done: 168 ms
编辑 :
mvn dependency:tree在jenkins build中运行:
mvn dependency:tree
[INFO] --- maven-dependency-plugin:2.1:tree (default-cli) [INFO] +- org.springframework:spring-context:jar:4.0.3.RELEASE:compile [INFO] | +- org.springframework:spring-aop:jar:4.0.3.RELEASE:compile [INFO] | | \- aopalliance:aopalliance:jar:1.0:compile [INFO] | +- org.springframework:spring-beans:jar:4.0.3.RELEASE:compile [INFO] | +- org.springframework:spring-core:jar:4.0.3.RELEASE:compile [INFO] | | \- commons-logging:commons-logging:jar:1.1.3:compile [INFO] | \- org.springframework:spring-expression:jar:4.0.3.RELEASE:compile [INFO] +- org.springframework:spring-webmvc:jar:4.0.3.RELEASE:compile [INFO] | \- org.springframework:spring-web:jar:4.0.3.RELEASE:compile [INFO] +- org.springframework:spring-test:jar:4.0.3.RELEASE:test [INFO] +- org.apache.poi:poi:jar:3.9:compile [INFO] | \- commons-codec:commons-codec:jar:1.5:compile ... ... [INFO] +- org.mockito:mockito-all:jar:1.9.5:test [INFO] +- com.jayway.jsonpath:json-path:jar:0.9.1:test [INFO] | \- net.minidev:json-smart:jar:1.2:test [INFO] +- org.hamcrest:hamcrest-all:jar:1.3:test [INFO] \- junit:junit:jar:4.11:test (scope not updated to compile) [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------
谢谢
由于Maven列出了缺少的类,因此您可能正在使用Jenkins插件运行Sonar。我从未使用过此插件,但我猜想它并不了解Maven。因此,它无法从POM创建类路径,并且运行时确实缺少类。
尝试使用Maven目标运行Sonar:mvn sonar:sonar在为Maven正确配置Sonar插件之后。
mvn sonar:sonar