如何为Maven Java项目设置Maven调试配置文件

时间:2019-02-25 00:23:21

标签: java debugging maven-3

我正在尝试在Eclipse Photon 2018/12中调试一个Maven黄瓜宁静Java项目。 请告诉我如何设置maven调试配置文件并运行,以便可以通过设置断点来调试代码。

1 个答案:

答案 0 :(得分:1)

这取决于您的需求。如果要调试测试,只需使用此配置文件:

<project
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <groupId>...</groupId>
    <artifactId>...</artifactId>
    <version>...</version>
    <packaging>...</packaging>

    <repositories>
        ...
    </repositories>

    <distributionManagement>
        ...
    </distributionManagement>

    <profiles>
        <profile>
            <id>debug</id>
            <properties>
                <maven.surefire.debug>test</maven.surefire.debug>
            </properties>
        </profile>
    </profiles>

    <build>
        ...
    </build>

    <dependencies>
        ...
    </dependencies>
</project>

但是,如果不是这种情况,那么您只需执行this即可配置Eclipse IDE。

希望有帮助。