将依赖项复制到项目本地存储库

时间:2014-06-03 22:37:55

标签: java maven maven-dependency-plugin

maven-dependency-plugin:copy复制一个jar。我需要根据存储库结构将jar和pom复制到适当命名的路径。

用例:我的项目有一个本地存储库,我保留了非公共依赖项。依赖项是我在我的机器上构建的项目,它安装在本地机器的存储库中。在将工件复制到项目的本地存储库之后,我可以在任何没有其他项目源的计算机上构建项目。使用项目本地存储库很容易。您只需要一个具有特定目录结构的文件夹,并将其包含在POM中:

<repositories>
    <repository>
        <id>in-project</id>
        <name>In Project Repo</name>
        <url>file://${project.basedir}/libs</url>
    </repository>
</repositories>

但是,将内容复制到本地仓库是我想避免的额外步骤。 maven-dependency-plugin:copy几乎可以满足我的需求。

<build>                
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>2.8</version>
            <executions>
                <execution>
                    <id>copy-private-dependencies</id>
                    <phase>prepare-package</phase>
                    <goals>
                        <goal>copy</goal>
                    </goals>
                    <configuration>
                        <artifactItems>
                            <artifactItem>
                                <groupId>...</groupId>
                                <artifactId>...</artifactId>
                            </artifactItem>
                        </artifactItems>
                        <outputDirectory>${project.basedir}/libs</outputDirectory>
                        <overWriteReleases>true</overWriteReleases>
                        <overWriteSnapshots>true</overWriteSnapshots>
                        <overWriteIfNewer>true</overWriteIfNewer>
                    </configuration>
                </execution>
            </executions>            
    </plugins>
</build>

但它只是复制了依赖关系的jar,没有pom而且没有必要的目录结构。

2 个答案:

答案 0 :(得分:1)

我已经写了一个关于这个问题的概念验证。你可以尝试一下:

https://github.com/Jintin/syndle

例如,如果您想将"group:name:version" "jcenter.bintray.com"下载到本地Maven存储库,则可以执行以下命令:

syndle clone -p group:name:version -s https://jcenter.bintray.com

答案 1 :(得分:1)

改为使用maven-dependency-plugin:copy-dependencies目标。如果useRepositoryLayoutcopyPom属性设置为true,则会创建此类本地存储库。

可以从命令行调用目标:

mvn org.apache.maven.plugins:maven-dependency-plugin:3.0.2:copy-dependencies -Dmdep.useRepositoryLayout=true -Dmdep.copyPom=true -DoutputDirectory=./repository-exported