[ANN] Apache Maven Shade Plugin 3.1.0 Released

2017-08-22 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Apache Maven Shade Plugin, version 3.1.0 This plugin provides the capability to package the artifact in an uber-jar, including its dependencies and to shade - i.e. rename - the packages of some of the dependencies.

Re: How to up date a property in a POM to a specific value

2017-08-22 Thread John Patrick
I think I do similar and I simply use -DpropertyName=newValueForProperty on the command line when executing the maven command, or via a profile and then activate the required profile. Just checking the property is already defined in a pom e.g. ..oldValueForProperty At build time I would

Re: How to up date a property in a POM to a specific value

2017-08-22 Thread Anders Hammar
Specifying property values from command line when doing a release could be bad practice, as the pom deployed would not contain the value from command line. It all depends on what the property is used for. /Anders On Tue, Aug 22, 2017 at 10:34 AM, John Patrick wrote: > I