how to add arbitrary information in manifest from maven assembly plugin

前端 未结 1 1351
一生所求
一生所求 2021-02-19 05:58

i use the assembly plugin to create a uber jar from several maven artifacts.

Now I like to add some company specific entries into the Manifest of the created assembly ja

相关标签:
1条回答
  • 2021-02-19 06:39

    argh... after posting it i found it out myself...

    <archive>
        <manifestEntries>
            <foobar>bla</foobar>
        </manifestEntries>
    </archive>
    

    works :)

    0 讨论(0)
提交回复
热议问题