Site of maven-war-plugin

2024-07-23 Thread Karl Heinz Marbaise
Hi to all, I've realized that the current page for the maven-war-plugin (https://maven.apache.org/plugins/maven-war-plugin/) shows a SNAPSHOT version (3.4.1-SNAPSHOT) instead of a release version like 3.4.0 (!) because central only contain 3.4.0 ? Also the git repos shows only 3.4.0 as tag... An

Re: [VOTE] Release Apache Resource Bundles 1.7

2024-07-23 Thread Sylwester Lachiewicz
+1 wt., 23 lip 2024, 13:30 użytkownik Olivier Lamy napisał: > +1 > > On Mon, 22 Jul 2024 at 03:44, Konrad Windszus wrote: > > > > Hi, > > > > We solved 5 issues: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12314621&version=12353102&styleName=Text > > > > Staging repo: > >

Re: [VOTE] Release Apache Resource Bundles 1.7

2024-07-23 Thread Olivier Lamy
+1 On Mon, 22 Jul 2024 at 03:44, Konrad Windszus wrote: > > Hi, > > We solved 5 issues: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12314621&version=12353102&styleName=Text > > Staging repo: > https://repository.apache.org/content/repositories/orgapacheapache-1040/ > https

Re: Status of new compiler plugin for Maven 4

2024-07-23 Thread Martin Desruisseaux
Le 2024-07-23 à 10 h 50, András Péteri a écrit : Class "org.eclipse.jdt.internal.compiler.tool.EclipseCompiler" does implement this interface (…snip…) name() is a default method on javax.tools.Tool and this implementation leaves it as-is, so it will return an empty String. Looks good. I al

Re: Status of new compiler plugin for Maven 4

2024-07-23 Thread András Péteri
Class "org.eclipse.jdt.internal.compiler.tool.EclipseCompiler" does implement this interface (although I don't know if this is the exact class that is used for compilation within Maven builds): https://github.com/eclipse-jdt/eclipse.jdt.core/blob/8e630b6c235edaf7d6e757442b1ee2c5761b6021/org.eclipse

Re: Status of new compiler plugin for Maven 4

2024-07-23 Thread Martin Desruisseaux
Le 2024-07-23 à 05 h 20, Olivier Lamy a écrit : How to use ecj with those changes? Or any other external tool by using the executable configuration? The compiler needs to implement the following interface (I think it is the case of the Eclipse compiler, but didn't verified carefully): j

Re: Way to skip tests when nothing has changed?

2024-07-23 Thread Martin Desruisseaux
Le 2024-07-23 à 01 h 21, Guillaume Nodet a écrit : FWIW, I started working on an API derived from the takari incremental build. This is available at [1] with usage snippets available at [2]. But the API is much more complex that just a status flag but it would allow automatically skipping any

Re: Status of new compiler plugin for Maven 4

2024-07-23 Thread Martin Desruisseaux
Le 2024-07-23 à 01 h 15, Guillaume Nodet a écrit : Awesome work ! Does ECJ implement javax.tools API too ? Thanks! I did not tested the Eclipse compiler, but from my search on internet, I got the impression that yes it implements the javax.tools API too. If not the case, it should be possibl