我正在打包ejb,我需要在依赖项中包含一些.classes,我正在尝试使用 maven-dependency-plugin 来解压缩工件并将其放入在包阶段我的 $ {project.build.directory} / classes 目录中的文件,但是当我执行 mvn package 时,我看不到任何文件记录或引用maven-dependency-plugin(没有任何反应),我甚至尝试使用无效版本的插件,它甚至不会抛出异常。
在我的pom.xml下面
....
<packaging>ejb</packaging>
<name>myapp</name>
...repository and props
<build>
<pluginManagement>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>unpack</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.myapp</groupId>
<artifactId>model</artifactId>
<version>1.0.0</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<includes>**/shared/*.class</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId>
<version>2.3</version>
<configuration>
<ejbVersion>3.0</ejbVersion>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>com.myapp</groupId>
<artifactId>model</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
我错过了什么?
PS:工件模型安装在本地仓库中,我也尝试过其他阶段。
答案 0 :(得分:9)
如果删除包含文本&lt; pluginManagement&gt;的行。和&lt; / pluginManagement&gt;插件应该执行。只是那两行,而不是两行之间的行。 pluginManagement是一个稍微高级的功能。
PluginManagement为从此POM继承的POM提供配置详细信息。但是,本节仅提供配置详细信息。要实际执行,必须在pluginManagement部分之外明确引用插件。