Re: Building with JDK 14 ea

2020-01-10 Thread Maxim Solodovnik
there is failOnError option https://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html#failOnError It can be turned on :)) On Fri, 10 Jan 2020 at 17:27, Emond Papegaaij wrote: > Indeed, the build does not fail, it barfs various nasty errors and > ends with 'BUILD SUCCESS' :) It

Re: Building with JDK 14 ea

2020-01-10 Thread Emond Papegaaij
Indeed, the build does not fail, it barfs various nasty errors and ends with 'BUILD SUCCESS' :) It does however not build the javadoc. I've filed https://issues.apache.org/jira/browse/MJAVADOC-633 Best regards, Emond On Fri, Jan 10, 2020 at 10:19 AM Martin Grigorov wrote: > > On Fri, Jan 10,

Re: Building with JDK 14 ea

2020-01-10 Thread Martin Grigorov
On Fri, Jan 10, 2020 at 11:12 AM Martin Grigorov wrote: > > > On Fri, Jan 10, 2020 at 11:02 AM Martin Grigorov > wrote: > >> >> >> On Fri, Jan 10, 2020 at 10:58 AM Maxim Solodovnik >> wrote: >> >>> `clean package` sounds more reasonable to me :) >>> >> >> agreed, but let's change that only

Re: Building with JDK 14 ea

2020-01-10 Thread Martin Grigorov
On Fri, Jan 10, 2020 at 11:02 AM Martin Grigorov wrote: > > > On Fri, Jan 10, 2020 at 10:58 AM Maxim Solodovnik > wrote: > >> `clean package` sounds more reasonable to me :) >> > > agreed, but let's change that only once we have a fix/workaround for the > problem > it seems it does not break

Re: Building with JDK 14 ea

2020-01-10 Thread Martin Grigorov
On Fri, Jan 10, 2020 at 10:58 AM Maxim Solodovnik wrote: > `clean package` sounds more reasonable to me :) > agreed, but let's change that only once we have a fix/workaround for the problem > > On Fri, 10 Jan 2020 at 15:57, Maxim Solodovnik > wrote: > > > `fast` profile skips javadoc >

Re: Building with JDK 14 ea

2020-01-10 Thread Martin Grigorov
On Fri, Jan 10, 2020 at 10:58 AM Maxim Solodovnik wrote: > `fast` profile skips javadoc > right! this explains it > > On Fri, 10 Jan 2020 at 15:56, Martin Grigorov > wrote: > > > Hi Emond, > > > > Locally while testing new JDK builds I always use: mvn14 clean install > > -Pfast,java14 >

Re: Building with JDK 14 ea

2020-01-10 Thread Maxim Solodovnik
`clean package` sounds more reasonable to me :) On Fri, 10 Jan 2020 at 15:57, Maxim Solodovnik wrote: > `fast` profile skips javadoc > > On Fri, 10 Jan 2020 at 15:56, Martin Grigorov > wrote: > >> Hi Emond, >> >> Locally while testing new JDK builds I always use: mvn14 clean install >>

Re: Building with JDK 14 ea

2020-01-10 Thread Maxim Solodovnik
`fast` profile skips javadoc On Fri, 10 Jan 2020 at 15:56, Martin Grigorov wrote: > Hi Emond, > > Locally while testing new JDK builds I always use: mvn14 clean install > -Pfast,java14 > mvn14 script just exports JAVA_HOME=$JAVA_14_HOME and calls mvn > and I don't remember having issues

Re: Building with JDK 14 ea

2020-01-10 Thread Martin Grigorov
Hi Emond, Locally while testing new JDK builds I always use: mvn14 clean install -Pfast,java14 mvn14 script just exports JAVA_HOME=$JAVA_14_HOME and calls mvn and I don't remember having issues with javadoc since a long time. On Fri, Jan 10, 2020 at 10:45 AM Emond Papegaaij wrote: > Hi all, >