Re: [PR] [MNG-8081] interpolate available properties during default profile selection (Maven 4.x) [maven]

2024-03-20 Thread Guillaume Nodet
I thought you were referring to having a small language in the property activation... Le mer. 20 mars 2024 à 22:06, Matt Benson a écrit : > > I just opted to solve potentially several feature requests with a single > code change rather than addressing each one separately with similar code >

Re: [PR] [MNG-8081] interpolate available properties during default profile selection (Maven 4.x) [maven]

2024-03-20 Thread Matt Benson
I just opted to solve potentially several feature requests with a single code change rather than addressing each one separately with similar code repeated in e.g. every profile activator implementation. On Wed, Mar 20, 2024 at 3:57 PM gnodet (via GitHub) wrote: > > gnodet commented on PR #1446:

Re: Finding previous artifact versions

2024-03-20 Thread Tamás Cservenák
Howdy, Here is proper example, done from report (but is pretty much same as would be from plugin): https://github.com/apache/maven-plugin-tools/pull/269/files#diff-d4a067f0ef6d2b9c15afd6a953078e78c098bbb441aedb92243870e39bea1b79 T On Wed, Mar 20, 2024 at 8:49 PM Jochen Wiedmann wrote: > On

Re: Finding previous artifact versions

2024-03-20 Thread Jochen Wiedmann
On Wed, Mar 20, 2024 at 3:51 PM Tamás Cservenák wrote: > Look here: > https://github.com/apache/maven-resolver/blob/maven-resolver-1.9.18/maven-resolver-demos/maven-resolver-demo-snippets/src/main/java/org/apache/maven/resolver/examples/FindAvailableVersions.java Thanks, very much, Tamas, I

Re: Finding previous artifact versions

2024-03-20 Thread Tamás Cservenák
Howdy, Look here: https://github.com/apache/maven-resolver/blob/maven-resolver-1.9.18/maven-resolver-demos/maven-resolver-demo-snippets/src/main/java/org/apache/maven/resolver/examples/FindAvailableVersions.java T On Wed, Mar 20, 2024 at 3:15 PM Jochen Wiedmann wrote: > Hi, > > I am currently

Finding previous artifact versions

2024-03-20 Thread Jochen Wiedmann
Hi, I am currently in the processof implementing a plugin, which should be able to fix missing @since tags. In order to determine the correct value for a given Java class, method, or field, I need a list of all previous artifact versions. Question: Are there any ideas, how my plugin can do that

maven-jlink-plugin - multiple launchers

2024-03-20 Thread Peter Hull
Hi, I'd like to be able to use the Maven plugin to generate a jlink "package" with more than one launcher specified. The jlink tool itself allows the --launcher option to be specified more than once but, as far as I can tell, the plugin does not allow multiple elements in the config section. Can