15

我正在尝试使用 Maven 构建一个独立的应用程序

使用如何使用 Maven 创建具有完整依赖项的独立应用程序中描述的程序集插件 ?

这将创建小部件分发 zip,其中包含

widget-1.0
widget-1.0/lib/widget.jar
widget-1.0/lib/3rdpartyjar1.jar
widget-1.0/lib/3rdpartyjar2.jar

...

但在我的 src 树中,我有:

src/main/bin/widget.sh 

这并没有进入最终的发行版 zip,我希望它放在这里

widget-1.0/widget.sh

同样在我的 src 树中,我有一个属性文件

src/main/properties/widget.properties

目前正在进入

widget-1.0/lib/widget.jar

但是因为我希望它是可编辑的,所以我希望它在

widget-1.0/widget.properties

是否可以在 maven 中执行此操作?

编辑 在博客中使用信息的工作如下:

  1. 将 bin 文件夹重命名为 scripts 文件夹,因为这是标准 Maven 名称
  2. 将 widget.properties 移至脚本文件夹
  3. 修改了我的 assembly.xml 以包含一个文件集

这是新的xml

<?xml version="1.0" encoding="UTF-8"?>
<assembly
    xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    <id>distribution</id>
    <formats>
        <format>zip</format>
    </formats>
    <dependencySets>
        <dependencySet>
            <scope>runtime</scope>
            <outputDirectory>lib</outputDirectory>
            <unpack>false</unpack>
        </dependencySet>
    </dependencySets>
    <fileSets>
        <fileSet>
            <directory>${project.build.scriptSourceDirectory}</directory>
            <outputDirectory></outputDirectory>
            <includes>
                <include>widget.sh</include>
                <include>widget.properties</include>
            </includes>
        </fileSet>
    </fileSets>
</assembly>

然而次要但无法在任何地方找到 maven 标准文件夹变量列表,即属性文件夹是否有 ${project.build.scriptSourceDirectory} 的等价物

4

1 回答 1

17

我发现这篇博客文章是关于如何做到这一点的一个很好的教程。

另外,我认为您放置文件的文件夹的名称是相关的。Maven 对文件的处理显然src/main/java与对src/main/resources. 我不是 100% 确定,但是这个文件夹的名称可能意味着文件是否在 jar 中结束。

是 Maven 目录名称属性的列表。

于 2012-07-24T13:28:52.297 回答