Maven:在插件之外获取内部依赖

时间:2017-05-04 00:20:53

标签: maven maven-plugin maven-dependency

在我的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>添加到依赖项中,但它仍然无法使用。

0 个答案:

没有答案