Pom.xml - tar 任务

发布于 2024-09-18 06:14:06 字数 172 浏览 6 评论 0原文

是否可以向 pom.xml 文件添加一个任务来创建 tar.gz / .zip 文件。
例如:

<tar type="tar.gz" source="resources/sql" tofile="target/sql.tar.gz"/>

谢谢

Is it possible to add a task to the pom.xml file that will create a tar.gz / .zip file.
for eample:

<tar type="tar.gz" source="resources/sql" tofile="target/sql.tar.gz"/>

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是一片海 2024-09-25 06:14:06

使用 maven-assemble-plugin

创建 src/main/assemble/bin.xml,详细信息请参阅 http://maven.apache.org/plugin-developers/cookbook/generate- assembly.htmlhttp://maven.apache.org/plugins/maven- assembly-plugin/descriptor-refs.html# bin

将您的资源 sql 文件放入 includes 中,并将 output 的格式指定为 tar.gz

接下来,在您的 pom.xml 中放置对此插件的引用

<project>
  [...]
  <build>
    [...]
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2-beta-5</version>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/bin.xml</descriptor>
          </descriptors>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>
              <goals>
                <goal>single</goal>
              </goals>
            </phase>              
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

http://maven.apache.org/plugins/maven- assembly- plugin/usage.html

最后,使用以下方式调用它

mvn package

Use the maven-assembly-plugin

Create a src/main/assembly/bin.xml as detailed at http://maven.apache.org/plugin-developers/cookbook/generate-assembly.html and http://maven.apache.org/plugins/maven-assembly-plugin/descriptor-refs.html#bin

Put your resources sql files in the includes and give the format of output as tar.gz

Next, in your pom.xml put the reference to this plugin

<project>
  [...]
  <build>
    [...]
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2-beta-5</version>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/bin.xml</descriptor>
          </descriptors>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>
              <goals>
                <goal>single</goal>
              </goals>
            </phase>              
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

http://maven.apache.org/plugins/maven-assembly-plugin/usage.html

Last, call this using

mvn package
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文