复制资源如何工作

时间:2016-12-27 06:49:15

标签: maven maven-resources-plugin

我尝试使用maven-resources-plugin和目标复制资源。它将所有资源复制到输出目录。我只需要一个jar。如何才能实现?

1 个答案:

答案 0 :(得分:0)

我的要求是将一个maven依赖项添加到resources文件夹,以便我可以将它添加到我的Kie-Container并执行驻留在jar中的规则。我使用maven-dependency-plugin实现它,目标是" copy& #34;。我做的错误是没有指定artifactItem.Afte我使用artifactItem并包含了我的jar描述。

             <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>2.4</version>
            <executions>
                <execution>
                    <id>copy</id>
                    <phase>prepare-package</phase>
                    <goals>
                        <goal>copy</goal>
                    </goals>
                    <configuration>
                        <artifactItems>
                            <artifactItem>
                                <groupId>SampleDroolsWBTest</groupId>
                                <artifactId>DroolsAPI</artifactId>
                                <version>2.0</version>
                                <overWrite>false</overWrite>
                                <outputDirectory>${basedir}/src</outputDirectory>
                                <includes>pom.xml</includes>
                            </artifactItem>
                        </artifactItems>
                    </configuration>
                </execution>
            </executions>
        </plugin>