在我的本地存储库(.m2/repository
)中,我有几个罐子,我希望它们在我的项目中被复制(和引用)。我对pom.xml
工件有以下com.google.protobuf
:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>groupName</groupId>
<artifactId>groupName.master</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.0-SNAPSHOT</version>
</parent>
<groupId>groupName</groupId>
<artifactId>com.google.protobuf</artifactId>
<name>com.google.protobuf</name>
<version>2.5.0</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-installed</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
</artifactItem>
</artifactItems>
<outputDirectory>build</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
基本上我希望这个插件将必要的jar文件复制到名为build的文件夹中,该文件夹位于模块文件夹下。它有点复制一个罐子。但是,当我点击并打开jar时,我看到没有文件,只有清单。所以引用显然会给出错误。我检查了我的本地存储库,jar就在那里,并且它已经正确形成了。所以来源不是问题。复制过程出了点问题。
以下是同一工件的罐子。一个是从本地存储库(上面)获取的,另一个是所谓的复制的一个到build
文件夹。如您所见,复制的文件缺少com
文件夹下的类文件。
为什么插件不正确地复制?有人有类似的经历吗?
更新:我注意到的一件事是这两个罐子里面有不同的MANIFEST文件。这可能是因为其中一个罐子从某个不应该被取出的地方被拿走了吗?
答案 0 :(得分:0)
好的,想通了。问题是我以错误的方式定义了工件。应该是:
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<overWrite>true</overWrite>
<type>${project.packaging}</type>
<outputDirectory>build</outputDirectory>
<destFileName>protobuf-java-2.5.0.jar</destFileName>
</artifactItem>
请注意<name
&gt;标签,在我的pom.xml
中不正确,因此系统无法获取必要的工件。还有destFileName
代码。
另外,上面这是错误的:
<groupId>groupName</groupId>
<artifactId>com.google.protobuf</artifactId>
<name>com.google.protobuf</name>
如果您想使用从中央存储库下载的那个,则无法更改groupId
或artifactId
。它们应该保留在包装网站上。
修好这些后,现在我可以看到类文件了。
答案 1 :(得分:0)
添加此插件pox.xml
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-appCtx</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<!--copy location-->
<outputDirectory>src/main/resources</outputDirectory>
<overwrite>true</overwrite>
<resources>
<resource>
<!--file location-->
<directory>${basedir}/lib</directory>
<includes>
<include>test1.jar</include>
<include>test2.jar</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>