如何“构建”和部署纯文本maven工件

时间:2013-10-17 13:46:57

标签: java maven pom.xml artifact

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

LDM。

2 个答案:

答案 0 :(得分:6)

来自讨论 How to attach a text file to a module's distribution?

  

过去我已经使用Build Helper插件来附加其他工件   https://www.mojohaus.org/build-helper-maven-plugin

如何attach additional artifacts to your project显示如何附加文件的示例;使您的模块类型为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>

答案 1 :(得分: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>