48

我正在尝试让项目 B下拉(并解压缩)项目 A构建的 ZIP并部署到远程存储库。

maven-assembly-pluginZIP 是使用, 包装类型创建和附加的pom

<artifactId>project-a</artifactId>
<name>ZIP</name>
<description>Used by Project B</description>
<packaging>pom</packaging>

...

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-assembly-plugin</artifactId>
  <executions>
    <execution>
      <id>distribution-package</id>
      <phase>package</phase>
      <goals>
        <goal>single</goal>
      </goals>
      <configuration>
        <descriptors>
          <descriptor>src/main/assembly/scripts.xml</descriptor>
        </descriptors>
        <tarLongFileMode>gnu</tarLongFileMode>
      </configuration>
    </execution>
  </executions>
</plugin>

尝试使用以下命令从Project B的 pom 中将其拉下maven-dependency-plugin

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-dependency-plugin</artifactId>
  <executions>
    <execution>
      <id>copy-scripts</id>
      <phase>package</phase>
      <goals>
        <goal>copy</goal>
      </goals>
      <configuration>
        <outputDirectory>${basedir}/target/staging</outputDirectory>
        <stripVersion>true</stripVersion>
        <artifactItems>
          <artifactItem>
            <groupId>...</groupId>
            <artifactId>...</artifactId>
            <version>...</version>
            <overWrite>true</overWrite>
            <type>zip</type>
          </artifactItem>
        </artifactItems>
      </configuration>
    </execution>
  </executions>
</plugin>

失败:[ERROR] Failed to execute goal on project ...: Could not resolve dependencies for project group:artifact:pom:version: Could not find artifact group:project-a:zip:version in nexus (http://...:8081/nexus/content/groups/public) -> [Help 1]

我认为这是因为我将Project A的包装指定为pom而不是zip,但是我不能将Project A指定为包装类型zip,因为它会导致:

[ERROR]     Unknown packaging: zip @ line 13, column 13

我在这里做错了什么还是这根本不可能?我只有一堆文件,我想将它们捆绑到一个工件中,并允许多个其他项目下载并解压缩它们以供使用。接受不同的建议...

我还检查以确保组装好的拉链确实在连接处。

已更新答案

为了其他人的利益,我缺少的是<classifier>依赖项必须与<id>程序集匹配。请注意thisistheattachedartifactsclassifier以下文件中指定的位置。

scripts.xml(项目 A):

<assembly>
  <id>thisistheattachedartifactsclassifier</id>
  <formats>
    <format>zip</format>
  </formats>

  <fileSets>
    <fileSet>
      <directory>src/main/resources</directory>
      ...
    </fileSet>
  </fileSets>
</assembly>

pom.xml(项目 B):

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-dependency-plugin</artifactId>
  <executions>
    <execution>
      <id>copy-scripts</id>
      <phase>package</phase>
      <goals>
        <goal>copy</goal>
      </goals>
      <configuration>
        <outputDirectory>${basedir}/target/staging</outputDirectory>
        <stripVersion>true</stripVersion>
        <artifactItems>
          <artifactItem>
            <groupId>...</groupId>
            <artifactId>...</artifactId>
            <version>...</version>
            <classifier>thisistheattachedartifactsclassifier</classifier>
            <overWrite>true</overWrite>
            <type>zip</type>
          </artifactItem>
        </artifactItems>
      </configuration>
    </execution>
  </executions>
</plugin>
4

3 回答 3

35

欢迎来到堆栈溢出 :)。

你走对了。你真正的问题是使用拉链。

以下配置没问题,对我来说很好用。这是一个旧的(2 年前),我不确定它是否符合最佳实践。但我知道这是有效的。

这让我可以在项目之间共享一些资源,尤其是单元测试。

邮编项目:

pom.xml

<groupId>com.mycompany</groupId>
<artifactId>cfg_dev</artifactId>
<version>1.1.0</version>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <executions>
                <execution>
                    <id>cfg-main-resources</id>
                    <goals>
                        <goal>single</goal>
                    </goals>
                    <phase>package</phase>
                    <configuration>
                        <descriptors>
                            <descriptor>/src/main/assembly/resources.xml</descriptor>
                        </descriptors>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

程序集描述符: 它将产生这个工件:cfg_dev-1.1.0-resources.zip 请注意

  1. 这是一个 zip 存档
  2. “分类器”是资源(如程序集名称)

    资源 zip false src/main/resources

主要项目:

pom.xml

请注意,

  1. 这取决于一个 zip 存档
  2. 依赖“分类器”是资源(如以前的程序集名称)

    <!-- Unit test dependency -->
    <dependency>
        <groupId>com.mycompany</groupId>
        <artifactId>cfg_dev</artifactId>
        <version>${project.version}</version>
        <classifier>resources</classifier>
        <type>zip</type>
        <scope>test</scope>
    </dependency>
    
      ....
    
    <build>
      <testResources>
        <!-- Ressources habituelles  -->
        <testResource>
            <directory>src/test/resources</directory>
            <filtering>true</filtering>
        </testResource>
        <!-- Unzipped resources from cfg_dev  -->
        <testResource>
            <directory>${project.build.directory}/test-resources</directory>
            <filtering>true</filtering>
        </testResource>
    </testResources>
    
    <plugins>
    
        <!-- Unzip shared resources -->
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
                <execution>
                    <id>unpack-cfg-test-resources</id>
                    <goals>
                        <goal>unpack-dependencies</goal>
                    </goals>
                    <phase>generate-test-resources</phase>
                    <configuration>
                        <outputDirectory>${project.build.directory}/test-resources</outputDirectory>
                        <includeArtifactIds>cfg_dev</includeArtifactIds>
                        <includeGroupIds>${project.groupId}</includeGroupIds>
                        <excludeTransitive>true</excludeTransitive>
                        <excludeTypes>pom</excludeTypes>
                        <scope>test</scope>
                    </configuration>
                </execution>
            </executions>
        </plugin>
      </plugins>
    

我希望这很清楚,这将对您有所帮助:)

于 2012-09-06T12:01:24.897 回答
5

另一种方法可能是完全放弃压缩,使用标准 Maven 生命周期将文件作为资源打包到 jar 文件中,并通过类路径从其他项目中访问它们。

除非您有特定的打包要求(包括、排除等),否则不需要额外的配置:只需将您的东西放在项目src/main/resources目录中即可。

当从 IDE(例如 Eclipse)中调用时,这种方法还有一个额外的好处,即在不改变工作时工作。

于 2012-09-06T12:25:38.757 回答
2

如果您想从命令行执行类似的操作(例如,无需编写pom.xml文件就可以从脚本执行),请按照以下方式执行...

您可以指定单个属性:

mvn dependency:copy -DgroupId=org.apache.maven -DartifactId=maven-core -Dversion=2.2.1 -Dpackaging=zip -Dclassifier=thisistheattachedartifactsclassifier

artifact或者在一个参数中指定它们:

mvn dependency:copy -Dartifact=org.apache.maven:maven-core:2.2.1:zip:thisistheattachedartifactsclassifier

对于后者,重要的是在属性classifier之后保留最后。packaging/type像这样:-Dartifact=groupId:artifactId:version:type:classifier

-DoutputDirectory=<directory>如果需要,您还可以选择使用参数指定目标目录。

于 2016-09-05T07:04:05.303 回答