如何在Maven依赖中使用JUnit 5.2 BOM?

时间:2018-05-08 20:16:25

标签: maven junit pom.xml junit5 maven-bom

根据最新发布的JUnit v.5.2,现在有一个BOM:

  

JUnit BOM:为了简化使用Maven或Gradle的依赖关系管理,现在在org.junit:junit-bom:5.2.0 Maven坐标下提供了Bill of Materials POM。

作为一个起点,目前我的POM看起来像这样:

the

如果我正确理解上面的BOM发布说明,则将此junit <?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.bosspanda.tmp</groupId> <version>0.1-SNAPSHOT</version> <artifactId>tmp</artifactId> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>10</maven.compiler.source> <maven.compiler.target>10</maven.compiler.target> <java.version>10</java.version> <junit.version>4.12</junit.version> <junit.jupiter.version>5.2.0</junit.jupiter.version> <junit.vintage.version>5.2.0</junit.vintage.version> <junit.platform.version>1.2.0</junit.platform.version> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <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-params</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>${junit.vintage.version}</version> <scope>test</scope> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> </project> 标记简化为单个BOM依赖项。

然而,我在将它集成到我的项目的pom.xml中时遇到了麻烦。在查看链接资源(https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Importing_Dependencies)之后,我得出结论,我必须用一个替换不同的依赖项:

<dependency>

但是有了这个,IntelliJ IDEA(版本2018.1.3 Ultimate x64,Maven v.3.5.3,目标JDK 10.0.1)似乎不知道<dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.2.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> 标记是什么并且不解析它的内容。项目结构中未注册任何模块 但是,如果我删除<dependencyManagement>标记,则IDEA不会加载BOM 我还尝试使用maven插件通过IDEA添加BOM的maven坐标,但是当它找到不同的junit包时,它找不到BOM并且无法从org.junit下载任何东西:junit-bom:5.2.0 < / p>

如何将此BOM文件添加到我的pom依赖项中?
谢谢!

2 个答案:

答案 0 :(得分:6)

<dependencyManagement><dependencies>下引用bom文件只管理要兼容的版本。您仍然需要在<dependencies>下声明所有必需的依赖项,但不需要<version>。这就是Maven bom引用的工作原理。 IntelliJ也可以这样处理它们。

答案 1 :(得分:1)

以下内容使用surefire.plugin.version 2.22.2对我有用

junit-jupiter工件引入了所有其他必要的工件,在这种情况下不需要单独的直接依赖项。

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.junit</groupId>
      <artifactId>junit-bom</artifactId>
      <version>5.5.2</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>
<dependencies>
  <dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter</artifactId>
    <scope>test</scope>
  </dependency>
  <!--Optional: Supports running Junit4 along with Junit5 -->
  <dependency>
    <groupId>org.junit.vintage</groupId>
    <artifactId>junit-vintage-engine</artifactId>
    <scope>test</scope>
  </dependency>
</dependencies>