gpt4 book ai didi

java - Spotbugs 与 JDeveloper 集成

转载 作者:太空宇宙 更新时间:2023-11-04 09:32:18 26 4
gpt4 key购买 nike

我是一名构建工程师,我的开发团队在 Jdeveloper IDE 中开发代码。有没有办法直接将spotbugs集成到Jdeveloper中并找到bug?

最佳答案

对于 JDeveloper 12c,您可以使用 Maven 集成 Spotbug,默认情况下,IDE 中可用(您也可以将其设置为 11g 版本,但默认情况下它不会集成到 IDE 中):

<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>3.1.12</version>
<dependencies>
<!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs -->
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>4.0.0-beta3</version>
</dependency>
</dependencies>
</plugin>

对于 JDeveloper 11g,您可以使用 Ant 集成 Spotbug,IDE 中默认提供该功能:

<property name="spotbugs.home" value="/export/home/daveho/work/spotbugs" />

<target name="spotbugs" depends="jar">
<spotbugs home="${spotbugs.home}"
output="xml"
outputFile="bcel-sb.xml" >
<auxClasspath path="${basedir}/lib/Regex.jar" />
<sourcePath path="${basedir}/src/java" />
<class location="${basedir}/bin/bcel.jar" />
</spotbugs>
</target>

了解更多:https://spotbugs.github.io/

在这两种情况下,您都会在 jdeveloper 内的“构建”菜单中看到新创建的 Spotbug 任务

关于java - Spotbugs 与 JDeveloper 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56946986/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com