Re: maven release plugin

2018-02-28 Thread Stephen Coy
I have been using https://github.com/aleksandr-m/gitflow-maven-plugin and found that it works quite sweetly. … and it is being actively maintained. Cheers, Steve C > On 1 Mar 2018, at 12:56 am, Ben Tatham wrote: > > Sounds like you're us

Re: warning messages

2018-02-28 Thread Mirko Friedenhagen
Hello Bill, ~/Library/Java/Extensions crossed my mind as well. You could even create this folder at root level, i.e. /Library/... Personally I would stay away from putting stuff in these folders, as afterwards your build might not be reproducible. Best regards Mirko -- Sent from my mobile Am

Re: maven release plugin

2018-02-28 Thread Mark Derricutt
On 1 Mar 2018, at 2:56, Ben Tatham wrote: > Sounds like you're using gitflow (master, develop, feature/* branches). If > so, we use the jgitflow-maven-plugin instead of maven-release-plugin, which > handles these transitions and the inherent conflicts caused by the maven > versioning. > > Unfortu

[ANN] Apache Maven JDeps Plugin 3.1.1 Released

2018-02-28 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Apache Maven JDeps Plugin, version 3.1.1 The JDeps Plugin uses the jdeps tool to analyze classes for internal API calls. For more information about the standard jdeps tool, please refer to https://wiki.openjdk.java.net/display/

Re: warning messages

2018-02-28 Thread Bill Tantzen
It works! The final solution was to remove EVERY jar file from ~/Library/Java/Extensions, and voila, all is good. A next step might be to add the jars back one-by-one to find the culprit, but I will save that for another day... There was nothing suspicious looking there, but obviously, there was

Re: warning messages

2018-02-28 Thread Mirko Friedenhagen
Hello Bill, sorry for the confusion, MAVEN_OPTS does not need to be set but might influence e.g. your classpath. Please write what you are doing exactly. Is this a general problem or only a problem for one project. I use 3.5.2 day by day and never saw these messages. Best regards Mirko -- Sent

Re: warning messages

2018-02-28 Thread Bill Tantzen
Thanks Mirko -- I've tried it both ways (brew and download) with exactly the same results. There seems to be something interfering with Maven's built-in slf4j support, but I cannot find what it is. I don't have any MAVEN_OPTS -- can you share an example? Thanks! --Bill On Tue, Feb 27, 2018 at 4

Re: maven release plugin

2018-02-28 Thread Matthew Broadhead
thanks Ben that looks just the job On 28/02/2018 14:56, Ben Tatham wrote: Sounds like you're using gitflow (master, develop, feature/* branches). If so, we use the jgitflow-maven-plugin instead of maven-release-plugin, which handles these transitions and the inherent conflicts caused by the mav

Re: maven release plugin

2018-02-28 Thread Ben Tatham
Sounds like you're using gitflow (master, develop, feature/* branches). If so, we use the jgitflow-maven-plugin instead of maven-release-plugin, which handles these transitions and the inherent conflicts caused by the maven versioning. Unfortunately, the maintainer is no longer working on it (and

maven release plugin

2018-02-28 Thread Matthew Broadhead
hi, not sure if this is the correct place to ask questions about the maven release plugin i am trying to set my snapshots and releases properly i am using git with a master branch and a development branch how do i work in the snapshot on development and then tag the releases to master? if you k