Maven 有没有办法在一系列依赖版本中多次构建和测试项目?
例如,假设我有以下库:
groupId artifactId version
com.example library 1.0
com.example library 1.1
com.example library 2.0
com.example library 2.2
我的构建产生了一个 jar 工件:output.jar
我能否针对每个库版本生成以下内容:
groupId artifactId version result
com.example library 1.0 output_1.0.jar
com.example library 1.1 output_1.1.jar
com.example library 2.0 output_2.0.jar
com.example library 2.2 output_2.2.jar