是否需要在pom.xml中指定maven surefire插件?

2j4z5cfb  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(396)

为什么pom.xml可以运行 mvn test 没有指定的maven surefire插件?

<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.lester</groupId>
    <artifactId>junit-basics</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>junit-basics</name>

    <properties>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.source>1.8</maven.compiler.source>
        <junit.jupiter.version>5.4.0</junit.jupiter.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit.jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>${junit.jupiter.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

把插件放到pom.xml和不放到pom.xml有什么区别?

vwoqyblh

vwoqyblh1#

如果您没有在pom中指定maven surefire插件,那么您的构建将按照maven中的指定获取其版本,请参阅https://maven.apache.org/ref/3.6.3/maven-core/default-bindings.html 这些版本已经有一段时间没有更新了,以确保maven的升级不会因为插件版本不同而影响您的构建。这些版本很可能会随着maven的下一个主要版本而更新。所以这一切都取决于你的项目的生命周期,如果它是一个私人项目。如果它有很长的生命周期,最好将这些插件锁定到特定的版本,这样您就不需要依赖任何人用来构建项目的maven版本。

相关问题