有没有办法让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
中定义一次,并在所有组装的罐子中使用主模块的清单。