我有父 pom 和两个模块 pom。在第一个模块中,我想将第二个模块(jar)复制到某个文件夹。当我从第一个模块 pom 编译项目时 - 它可以工作,但是当我尝试从父项目 pom 编译时,插件会尝试复制 jar 的模块类:
[错误] 无法执行目标 org.apache.maven.plugins:maven-dependency-plugin:2.1:copy (default) on project module1: 将工件从 /home/chardex/projects/test/module2/target/classes 复制到时出错/home/chardex/projects/test/module1/target/lib/classes: /home/chardex/projects/test/module2/target/classes (是一个目录) -> [帮助1]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>...</groupId>
<artifactId>module2</artifactId>
<version>...</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
谢谢。