zoukankan      html  css  js  c++  java
  • 打包组件assembly之package.xml

    形如:

    <assembly>
        <id>deploy</id>
        <formats>
            <format>zip</format>
        </formats>
        <includeBaseDirectory>false</includeBaseDirectory>
        <dependencySets>
            <dependencySet>
                <useProjectArtifact>true</useProjectArtifact>
                <outputDirectory>lib</outputDirectory>
                <includes>
                    <include>*:jar:*</include>
                </includes>
                <excludes>
                    <exclude>*:sources</exclude>
                </excludes>
            </dependencySet>
        </dependencySets>
        <fileSets>
            <fileSet>
                <directory>${project.basedir}/wrapper/bin</directory>
                <outputDirectory>/bin</outputDirectory>
                <fileMode>755</fileMode>
                <includes>
                    <include>wrapper</include>
                    <include>service.sh</include>
                </includes>
            </fileSet>
            <fileSet>
                <directory>${project.basedir}/wrapper/lib</directory>
                <outputDirectory>/lib</outputDirectory>
                <includes>
                    <include>wrapper.jar</include>
                    <include>libwrapper.so</include>
                </includes>
            </fileSet>
        </fileSets>
    </assembly>
    

    简单标签释义:

    <id>deploy</id>
    

    该标签内容首先不能为空,名称可任意定义,原则上就使用“deploy”,在 maven 编译打包后,其编译的包名会有“-deploy”的命名追加。

    <formats>
        <format>zip</format>
    </formats>
    

    该标签内容指定模块编译后的文件格式。原则上要求使用“zip”,在 maven 编译打包后,其编译的包会压缩成.zip 文件。

    <includeBaseDirectory>false</includeBaseDirectory>
    

    该处理是根据运维自动化部署的实际需要,必须设定该标签为“false”,在 maven 编译打包后,将不包含根级目录

  • 相关阅读:
    Android自己定义无下划线ClickableSapn超链接文本样式
    poj 3263 Tallest Cow(线段树)
    html css 仿微信底部自己定义菜单
    oracle-闪回技术2
    poj 3181 Dollar Dayz
    poj 3181 Dollar Dayz
    poj 3046 Ant Counting(多重集组合数)
    poj 3046 Ant Counting(多重集组合数)
    【划分数】系列问题
    【划分数】系列问题
  • 原文地址:https://www.cnblogs.com/hailongchen/p/9765588.html
Copyright © 2011-2022 走看看