实际上,我正在学习Spring MVC,我在pom.xml文件中定义版本值时有些疑问我在论坛中看到定义Junit版本值这样的<version>${junit.version}</version>
是正确的格式吗?
您可以使用内联版本:
<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>