Re: Is there a plugin that allows me to modify existing jar manifest?

2017-11-14 Thread Martin Gainty
From: Eric B Sent: Monday, November 13, 2017 8:53 PM To: Maven Users List Subject: Re: Is there a plugin that allows me to modify existing jar manifest? Martin, Thanks, but the jar-plugin only allows to build a jar from the current

Re: Is there a plugin that allows me to modify existing jar manifest?

2017-11-14 Thread Eric B
Thanks Maxim. Will take a look at how you are using the assembly.xml to accomplish that. Much appreciated. Eric On Nov 13, 2017 10:03 PM, "Maxim Solodovnik" wrote: > Hello Eric, > > we are using assembly plugin to achieve this: >

Re: Is there a plugin that allows me to modify existing jar manifest?

2017-11-13 Thread Maxim Solodovnik
Hello Eric, we are using assembly plugin to achieve this: https://github.com/apache/openmeetings/blob/master/openmeetings-screenshare/pom.xml#L158 On Tue, Nov 14, 2017 at 8:53 AM, Eric B wrote: > Martin, > > Thanks, but the jar-plugin only allows to build a jar from the

Re: Is there a plugin that allows me to modify existing jar manifest?

2017-11-13 Thread Eric B
Martin, Thanks, but the jar-plugin only allows to build a jar from the current project (and set appropriate Manifest entries). I'm looking to modify an existing jar. I could use the dependency plugin to retrieve the jar, and unpack it, then point the jar-plugin to the unpacked dependency and

Re: Is there a plugin that allows me to modify existing jar manifest?

2017-11-13 Thread Martin Gainty
From: Eric B Sent: Monday, November 13, 2017 5:51 PM To: Maven Users List Subject: Is there a plugin that allows me to modify existing jar manifest? I'm looking to modify an existing third-party JAR's Manifest file in my maven build.