是否可以为每个依赖项声明多个 artifactID?

Is it possible to declare multiple artifactIDs per dependency?

我想将 JODD 导入我的应用程序。

<dependency>
    <groupId>org.jodd</groupId>
    <artifactId>jodd-core</artifactId>
    <version>3.6.6</version>
</dependency>

但是除了jodd-core,我还需要很多额外的模块。明确一点:很多 jodd-* 模块。

所以我的问题是:我可以在一个 <dependency></dependency> 中导入多个工件,例如

<dependency>
    <groupId>org.jodd</groupId>
    <artifacts>
       ...
    </artifacts>
</dependency>

不,maven 有点冗长。每个 dependency 标签只能包含一个 groupIdartifactId.