我希望在没有版本的情况下解决依赖关系。 Maven 3强迫我使用一个版本,我无法为我正在解析的系统范围jar提供一个版本。感谢。
答案 0 :(得分:1)
您可以使用如下定义的系统属性来解决依赖关系。
<properties>
<org.springframework.version>3.0.5.RELEASE</org.springframework.version>
</properties>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${org.springframework.version}</version>
</dependency>
您还可以选择提供Dependency Version Ranges。您可能希望做的事情类似于<version>[1.2.3,)</version>