1

我有 Maven 项目。当我单击安装maven 构建zipjar文件时target

但是当我点击部署它只部署jar文件和依赖项部署到远程存储库。

问题:如何添加 zip 文件以使用标准 maven 插件部署到远程 nexus 存储库。

编辑

<packaging>custom-zip<packaging>

4

1 回答 1

5

为了正确installdeploy额外的工件(由构建生成的文件,通常也遵循其版本控制和相关项目结果的连贯部分),您需要将其附加到构建中,以便 Maven 将其作为官方交付物处理其结果。

要将文件附加到构建,您可以使用build-helper-maven-plugin.

以下是其使用页面的示例片段:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.12</version>
    <executions>
      <execution>
        <id>attach-artifacts</id>
        <phase>package</phase>
        <goals>
          <goal>attach-artifact</goal>
        </goals>
        <configuration>
          <artifacts>
            <artifact>
              <file>the-generated-file</file>
              <type>extension of your file</type>
              <classifier>optional</classifier>
            </artifact>
          </artifacts>
        </configuration>
      </execution>
    </executions>
</plugin>

您应该将上面的配置放在负责生成文件的插件声明之后,也就是说,当您尝试将其附加到构建时,该文件应该存在。查看file配置元素,在这里您应该指定文件,例如target\myfile.zip. 在这种情况下,它将在package阶段期间附加,以便installdeploy阶段在处理过程中将其考虑在内。

调用时

mvn clean install

然后,您将看到作为构建输出的一部分:

[INFO] --- build-helper-maven-plugin:1.12:attach-artifact (attach-artifacts) @ zip-example ---
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ zip-example ---
[INFO] Installing C:\data\eclipse-workspace\zip-example\target\zip-example-0.0.1-SNAPSHOT.jar to c:\data\m2\repository\com\sample\zip-example\0.0.1-SNAPSHOT\zip-example-0.0.1-SNAPSHOT.jar
[INFO] Installing C:\data\eclipse-workspace\zip-example\pom.xml to c:\data\m2\repository\com\sample\zip-example\0.0.1-SNAPSHOT\zip-example-0.0.1-SNAPSHOT.pom
[INFO] Installing C:\data\eclipse-workspace\zip-example\sample.zip to c:\data\m2\repository\com\sample\zip-example\0.0.1-SNAPSHOT\zip-example-0.0.1-SNAPSHOT-optional.zip
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------

注意:sample.zip实际复制到m2本地存储库为zip-example-0.0.1-SNAPSHOT-optional.zip,因此根据项目配置重命名(artifactId, version, classifier)。

于 2016-09-27T15:24:58.407 回答