maven-dependency-plugin 不执行父子(目标)执行

maven-dependency-plugin not executing parent and child (goal)execution

我有两个 maven-dependency-plugin 配置,一个在我的父模块中,一个在我的子模块中。父执行不 运行 只有子执行。如果我手动将父执行复制(不移动)到子插件执行中,它可以工作,但我不想这样做,因为我也需要其他 projects/children/modules 的父配置。如果我注释掉子插件执行,它 运行 是父执行。

我的子插件执行基于答案here

子 pom 配置(无论如何总是 运行s):

   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.8</version>
    <executions>
           <execution>
            <id>copy-model</id>
            <phase>package</phase>
            <goals>
                <goal>copy</goal>
            </goals>
            <configuration>
                <artifactItems>
                    <artifactItem>
                        <groupId>my.test.pkg</groupId>
                        <artifactId>my-model</artifactId>
                        <classifier>server</classifier>
                        <version>1.0.3</version>
                        <type>jar</type>
                    </artifactItem>
                </artifactItems>
               <outputDirectory>${project.build.directory}/lib</outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

父配置(在子 pom 中复制时只有 运行s):

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.8</version>
<executions>
       <execution>
        <id>build-classpath</id>
        <phase>generate-sources</phase>
        <goals>
            <goal>build-classpath</goal>
        </goals>
        <configuration>
             <outputFilterFile>true</outputFileterFile>
             <includeScope/>
             <fileSeparator/>
            <outputDirectory>${project.build.directory}/lib</outputDirectory>
        </configuration>
    </execution>
</executions>
</plugin>

PluginManagement 在父级中有插件版本和插件配置 pom.xml ,这禁止在子级 pom 中继承时在父级中执行。

从 pluginManagement 中删除了 configuration/execution 并修复了它。