5

我有一个 maven 模块,用于保存我需要“构建”(使用 name-version-classifier.extension 格式重命名文件)并部署在我的 maven 存储库上的纯文本文件。我知道我可以通过命令行部署它,但我想知道我是否可以编写一个 pom.xml 从而获得相同的结果。

LDM。

4

2 回答 2

9

来自讨论如何将文本文件附加到模块的分发中?

在过去,我使用 Build Helper 插件来附加额外的工件 https://www.mojohaus.org/build-helper-maven-plugin

如何将其他工件附加到项目的示例显示了如何附加文件;使您的模块类型pom化,附加工件将是唯一部署的工件:

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.8</version>
    <executions>
      <execution>
        <id>attach-artifacts</id>
        <phase>package</phase>
        <goals>
          <goal>attach-artifact</goal>
        </goals>
        <configuration>
          <artifacts>
            <artifact>
              <file>some file</file>
              <type>extension of your file </type>
              <classifier>optional</classifier>
            </artifact>
            ...
          </artifacts>
        </configuration>
      </execution>
    </executions>
  </plugin>
于 2013-10-17T14:00:36.053 回答
0

使用 build-helper-maven-plugin:attach-artifact

    <project>
      ...
      <build>
        <plugins>
          <plugin>
            <!-- add configuration for antrun or another plugin here -->
          </plugin>
          ...
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <version>1.8</version>
            <executions>
              <execution>
                <id>attach-artifacts</id>
                <phase>package</phase>
                <goals>
                  <goal>attach-artifact</goal>
                </goals>
                <configuration>
                  <artifacts>
                    <artifact>
                      <file>some file</file>
                      <type>extension of your file </type>
                      <classifier>optional</classifier>
                    </artifact>
                    ...
                  </artifacts>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </project>
于 2013-10-17T14:02:10.217 回答