maven-assembly-plugin可以使用依赖的清单吗?

时间:2017-04-14 20:08:09

标签: maven maven-assembly-plugin

有没有办法让maven-assembly-plugin使用特定依赖项中的清单作为已组装jar的清单?

我将我的应用程序打包为具有不同依赖关系的可执行jar,因此我在单独的模块中构建程序集。我在每个汇编模块的maven-assembly-plugin中复制了此配置:

<archive>
    <manifestEntries>
        <Main-Class>mypackage.MyApp</Main-Class>
        <SplashScreen-Image>images/splash.jpg</SplashScreen-Image>
    </manifestEntries>
</archive>

我只想在我的主模块的maven-jar-plugin中定义一次,并在所有组装的罐子中使用主模块的清单。

0 个答案:

没有答案