这是在pom.xml中定义Junit版本的最新方法吗?

问题描述 投票:-1回答:1

实际上,我正在学习Spring MVC,我在pom.xml文件中定义版本值时有些疑问我在论坛中看到定义Junit版本值这样的<version>${junit.version}</version>是正确的格式吗?

java junit pom.xml
1个回答
1
投票

您可以使用内联版本:

<dependency>  
  <groupId>junit</groupId>  
  <artifactId>junit</artifactId>  
  <version>4.8.2</version>  
  <scope>test</scope> 
</dependency> 

或属性:

<project>
...
  <properties>
     <junit.version>4.8.2</junit.version>
  </properties>
...
</project>

<dependency>中使用此属性

<dependency>  
  <groupId>junit</groupId>  
  <artifactId>junit</artifactId>  
  <version>${junit.version}</version>  
  <scope>test</scope> 
</dependency>
© www.soinside.com 2019 - 2024. All rights reserved.