作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我查看了 cxf 源代码并尝试使用“作为 maven 项目导入”将项目导入到 Eclipse 中。
然后我得到错误:找不到那个类 org.apache.cxf.pmd.UnsafeStringConstructorRule
从 m2e。
所以似乎 cxf 在那里定义了一个规则,而 pmd 插件没有找到它。
有什么想法吗?
最佳答案
关于Apache CXF parent pom ,它提到了 profile
命名 m2eclipse
其中定义了 maven-pmd-plugin
与 the dependency
如下:-
<profile>
<id>m2eclipse</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
<dependencies>
<dependency>
<groupId>org.apache.cxf.build-utils</groupId>
<artifactId>cxf-buildtools</artifactId>
<version>${cxf.build-utils.version}</version>
</dependency>
</dependencies>
<configuration>
<rulesets>
<ruleset>
${cxf.resources.base.path}cxf-pmd-ruleset.xml
</ruleset>
</rulesets>
<sourceEncoding>UTF-8</sourceEncoding>
<targetJdk>1.6</targetJdk>
<linkXRef>false</linkXRef>
<includeTests>true</includeTests>
<verbose>true</verbose>
<excludeRoots>
<excludeRoot>${basedir}/src/main/generated</excludeRoot>
</excludeRoots>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
activation
在
this profile
.
org.apache.cxf.build-utils:cxf-buildtools:2.5.0:jar
表格
Maven Central Repository ,我也找到了名为
org.apache.cxf.pmd.UnsafeStringConstructorRule
的类以及。
<profile>
<id>m2eclipse</id>
<activation>
<property>
<name>!skipM2E</name>
</property>
</activation>
....
</profile>
关于eclipse - 使用 m2e : Couldn't find that class org. apache.cxf.pmd.UnsafeStringConstructorRule 将 cxf 项目导入 Eclipse 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16085263/
我查看了 cxf 源代码并尝试使用“作为 maven 项目导入”将项目导入到 Eclipse 中。 然后我得到错误:找不到那个类 org.apache.cxf.pmd.UnsafeStringCons
我是一名优秀的程序员,十分优秀!