试图复制denedecy机器人无法正常工作

时间:2016-03-17 22:02:07

标签: maven maven-dependency-plugin

<modelVersion>4.0.0</modelVersion>
<artifactId>eau-claims-jar</artifactId>
<groupId>com</groupId>
<name>eau-claims-jar</name>
<packaging>jar</packaging>
<version>2.1.10.0-TIM3-SNAPSHOT</version>

<profiles>
    <profile>
        <id>build-4-eau</id>

        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-dependency-plugin</artifactId>
                    <!-- <version>2.10</version> -->
                    <executions>
                        <execution>
                            <id>copy</id>
                            <phase>prepare-package</phase>
                            <goals>
                                <goal>copy</goal>
                            </goals>
                            <configuration>
                                <artifactItems>
                                    <artifactItem>
                                        <groupId>com</groupId>
                                        <artifactId>kcaps</artifactId>
                                        <version>2.3.0.0-TIM2-SNAPSHOT</version>
                                        <!-- <type>jar</type> -->
                                    </artifactItem>
                                </artifactItems>
                                <outputDirectory>.</outputDirectory>
                                <overWriteReleases>false</overWriteReleases>
                                <overWriteSnapshots>false</overWriteSnapshots>
                                <overWriteIfNewer>true</overWriteIfNewer>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

依赖的kcaps jar没有下载。我正在尝试构建一个jenkins作业,下载依赖jar并将其复制到服务器。只生成并复制了eau-claims-jar jar,但依赖的jar却没有。任何想法我做错了什么或任何不同的方法?

1 个答案:

答案 0 :(得分:0)

http://www.egtry.com/tools/maven/dependency_copy 尝试了它在上面的链接和它是如何工作的。仍然不明白我的pom.xml的问题是什么