在我的build
之一的POM
部分中,我以下列方式使用了插件。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<dependencies>
<dependency>
<groupId>some-group-id</groupId>
<artifactId>some-plugin</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<executions>
...
</executions>
</plugin>
请注意,依赖项是在插件中声明的。出于某些原因,我不希望在插件中声明任何依赖项。我试图将依赖项移动到dependencies
部分(插件之外),但插件无法使用依赖项,我收到错误。
如何在不插入插件内部的情况下为插件提供依赖项?它甚至可能吗?
我尝试将<scope>runtime</scope>
添加到依赖项中,但它仍然无法使用。