Re: Modifying $project properties with maven-scripting-plugin?

2026-01-13 Thread Mirko Friedenhagen
Thanks to everyone, I obviously forgot about the JDK version based activation 
myself :facepalm:

Mit freundlichen Grüßen
Mirko Friedenhagen
— 

> Am 09.01.2026 um 05:15 schrieb Alexander Kriegisch :
> 
> I was not following the docs link, which is why I am ugly and stupid.
> Thanks for the correction and explanation. 🙂🙏
> --
> Alexander Kriegisch
> https://scrum-master.de
> 
> 
> Nils Breunese schrieb am 09.01.2026 um 09:54:
>> Alexander Kriegisch  wrote:
>> 
>>> I have not tried, but in Nils' solution both profiles might be active,
>>> and I am unsure which property would win.
>> 
>> How could both profiles be active? The docs I linked say the following for 
>> providing a single JDK version: “(…) in particular it won’t be active for 
>> newer versions (…)”, so my solution more closely matches what was attempted.
>> 
>> But yes, it is indeed also possible to use ranges, as documented.
>> 
>> Nils.
>> 
>>> In some of my project, I
>>> rather did this:
>>> 
>>> [1.8,16)
>>> ...
>>> [16,24)
>>> ...
>>> [24,)
>>> ...
>>> 
>>> --
>>> Alexander Kriegisch
>>> https://scrum-master.de
>>> 
>>> 
>>> Nils Breunese schrieb am 09.01.2026 um 05:49:
 Mirko Friedenhagen  wrote:
 
> AFAIK profiles _may not_ be activated via project properties, only via 
> system-properties/environment variables.
> Thinking loud: maybe set this in .mvn/maven.config?
 
 I think Tamás meant to suggest auto-activating profiles based on the JDK 
 version 
 (https://maven.apache.org/guides/introduction/introduction-to-profiles.html#jdk).
 
 Something like this:
 
 
 
   
 21
   
   
 
 docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
   
 
 
   
 25
   
   
 
 docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23
   
 
 
 
 Nils.
 
>> Am 07.01.2026 um 18:11 schrieb Tamás Cservenák :
>> 
>> Howdy,
>> 
>> Would not doing this be simpler from a profile? Which is activated
>> based on the Java version?
>> 
>> T
>> 
>> On Wed, Jan 7, 2026 at 5:36 PM Mirko Friedenhagen  
>> wrote:
>>> 
>>> Hi,
>>> 
>>> is it somehow possible to add or modify the project resp. its 
>>> properties during e.g. validate or initialize with this plugin?
>>> I defined the following and want
>>> 
>>> 
>>> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>>> 21
>>> 
>>> 
>>> 
>>> 
>>> maven-scripting-plugin
>>> 3.1.0
>>> 
>>> 
>>> foo
>>> initialize
>>> eval
>>> 
>>> java
>>> >> var props = 
>>> $project.getProperties();
>>> System.err.println("X " + 
>>> props.getProperty("docker-maven-plugin.from"));
>>> var version = 
>>> props.getProperty("java.version");
>>> switch (version) {
>>> case "21" -> 
>>> props.setProperty("docker-maven-plugin.from", 
>>> "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
>>> case "25" -> 
>>> props.setProperty("docker-maven-plugin.from", 
>>> "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
>>> default -> throw new 
>>> IllegalArgumentException("Not supported“);
>>> }
>>> System.err.println("Y " + 
>>> props.getProperty("docker-maven-plugin.from"));
>>> ]]>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> The println statement are executed and show the „correct“ result, 
>>> however when I lateron reference reference property 
>>> docker-maven-plugin.from in a plugin it still has the value of the 
>>> definition in the standard properties section.
>>> 
>>> 
>>> Mit freundlichen Grüßen
>>> Mirko Friedenhagen
 
 
 -
 To unsubscribe, e-mail: [email protected]
 For additional commands, e-mail: [email protected]
 
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: [email protected]
>>> For additional commands, e-mail: [email protected]
>>> 
>> 
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@maven

Re: Modifying $project properties with maven-scripting-plugin?

2026-01-08 Thread Alexander Kriegisch
I was not following the docs link, which is why I am ugly and stupid.
Thanks for the correction and explanation. 🙂🙏
--
Alexander Kriegisch
https://scrum-master.de


Nils Breunese schrieb am 09.01.2026 um 09:54:
> Alexander Kriegisch  wrote:
> 
>> I have not tried, but in Nils' solution both profiles might be active,
>> and I am unsure which property would win.
> 
> How could both profiles be active? The docs I linked say the following for 
> providing a single JDK version: “(…) in particular it won’t be active for 
> newer versions (…)”, so my solution more closely matches what was attempted.
> 
> But yes, it is indeed also possible to use ranges, as documented.
> 
> Nils.
> 
>> In some of my project, I
>> rather did this:
>>
>>  [1.8,16)
>>  ...
>>  [16,24)
>>  ...
>>  [24,)
>>  ...
>>
>> --
>> Alexander Kriegisch
>> https://scrum-master.de
>>
>>
>> Nils Breunese schrieb am 09.01.2026 um 05:49:
>>> Mirko Friedenhagen  wrote:
>>>
 AFAIK profiles _may not_ be activated via project properties, only via 
 system-properties/environment variables.
 Thinking loud: maybe set this in .mvn/maven.config?
>>>
>>> I think Tamás meant to suggest auto-activating profiles based on the JDK 
>>> version 
>>> (https://maven.apache.org/guides/introduction/introduction-to-profiles.html#jdk).
>>>
>>> Something like this:
>>>
>>> 
>>> 
>>>
>>>  21
>>>
>>>
>>>  
>>> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>>>
>>>  
>>>  
>>>
>>>  25
>>>
>>>
>>>  
>>> docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23
>>>
>>>  
>>> 
>>>
>>> Nils.
>>>
> Am 07.01.2026 um 18:11 schrieb Tamás Cservenák :
>
> Howdy,
>
> Would not doing this be simpler from a profile? Which is activated
> based on the Java version?
>
> T
>
> On Wed, Jan 7, 2026 at 5:36 PM Mirko Friedenhagen  
> wrote:
>>
>> Hi,
>>
>> is it somehow possible to add or modify the project resp. its properties 
>> during e.g. validate or initialize with this plugin?
>> I defined the following and want
>>
>> 
>> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>> 21
>> 
>>
>> 
>> 
>>  maven-scripting-plugin
>>  3.1.0
>>  
>>  
>>  foo
>>  initialize
>>  eval
>>  
>>  java
>>  >  var props = 
>> $project.getProperties();
>>  System.err.println("X " + 
>> props.getProperty("docker-maven-plugin.from"));
>>  var version = 
>> props.getProperty("java.version");
>>  switch (version) {
>>  case "21" -> 
>> props.setProperty("docker-maven-plugin.from", 
>> "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
>>  case "25" -> 
>> props.setProperty("docker-maven-plugin.from", 
>> "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
>>  default -> throw new 
>> IllegalArgumentException("Not supported“);
>>  }
>>  System.err.println("Y " + 
>> props.getProperty("docker-maven-plugin.from"));
>>  ]]>
>>  
>>  
>>  
>>  
>> 
>> 
>>
>> The println statement are executed and show the „correct“ result, 
>> however when I lateron reference reference property 
>> docker-maven-plugin.from in a plugin it still has the value of the 
>> definition in the standard properties section.
>>
>>
>> Mit freundlichen Grüßen
>> Mirko Friedenhagen
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: [email protected]
>>> For additional commands, e-mail: [email protected]
>>>
>>
>>
>> -
>> To unsubscribe, e-mail: [email protected]
>> For additional commands, e-mail: [email protected]
>>
> 
> 
> -
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: Modifying $project properties with maven-scripting-plugin?

2026-01-08 Thread Nils Breunese
Alexander Kriegisch  wrote:

> I have not tried, but in Nils' solution both profiles might be active,
> and I am unsure which property would win.

How could both profiles be active? The docs I linked say the following for 
providing a single JDK version: “(…) in particular it won’t be active for newer 
versions (…)”, so my solution more closely matches what was attempted.

But yes, it is indeed also possible to use ranges, as documented.

Nils.

> In some of my project, I
> rather did this:
> 
>  [1.8,16)
>  ...
>  [16,24)
>  ...
>  [24,)
>  ...
> 
> --
> Alexander Kriegisch
> https://scrum-master.de
> 
> 
> Nils Breunese schrieb am 09.01.2026 um 05:49:
>> Mirko Friedenhagen  wrote:
>> 
>>> AFAIK profiles _may not_ be activated via project properties, only via 
>>> system-properties/environment variables.
>>> Thinking loud: maybe set this in .mvn/maven.config?
>> 
>> I think Tamás meant to suggest auto-activating profiles based on the JDK 
>> version 
>> (https://maven.apache.org/guides/introduction/introduction-to-profiles.html#jdk).
>> 
>> Something like this:
>> 
>> 
>> 
>>
>>  21
>>
>>
>>  
>> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>>
>>  
>>  
>>
>>  25
>>
>>
>>  
>> docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23
>>
>>  
>> 
>> 
>> Nils.
>> 
 Am 07.01.2026 um 18:11 schrieb Tamás Cservenák :
 
 Howdy,
 
 Would not doing this be simpler from a profile? Which is activated
 based on the Java version?
 
 T
 
 On Wed, Jan 7, 2026 at 5:36 PM Mirko Friedenhagen  
 wrote:
> 
> Hi,
> 
> is it somehow possible to add or modify the project resp. its properties 
> during e.g. validate or initialize with this plugin?
> I defined the following and want
> 
> 
> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
> 21
> 
> 
> 
> 
>  maven-scripting-plugin
>  3.1.0
>  
>  
>  foo
>  initialize
>  eval
>  
>  java
>    var props = $project.getProperties();
>  System.err.println("X " + 
> props.getProperty("docker-maven-plugin.from"));
>  var version = 
> props.getProperty("java.version");
>  switch (version) {
>  case "21" -> 
> props.setProperty("docker-maven-plugin.from", 
> "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
>  case "25" -> 
> props.setProperty("docker-maven-plugin.from", 
> "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
>  default -> throw new 
> IllegalArgumentException("Not supported“);
>  }
>  System.err.println("Y " + 
> props.getProperty("docker-maven-plugin.from"));
>  ]]>
>  
>  
>  
>  
> 
> 
> 
> The println statement are executed and show the „correct“ result, however 
> when I lateron reference reference property docker-maven-plugin.from in a 
> plugin it still has the value of the definition in the standard 
> properties section.
> 
> 
> Mit freundlichen Grüßen
> Mirko Friedenhagen
>> 
>> 
>> -
>> To unsubscribe, e-mail: [email protected]
>> For additional commands, e-mail: [email protected]
>> 
> 
> 
> -
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: Modifying $project properties with maven-scripting-plugin?

2026-01-08 Thread Alexander Kriegisch
I have not tried, but in Nils' solution both profiles might be active,
and I am unsure which property would win. In some of my project, I
rather did this:

  [1.8,16)
  ...
  [16,24)
  ...
  [24,)
  ...

--
Alexander Kriegisch
https://scrum-master.de


Nils Breunese schrieb am 09.01.2026 um 05:49:
> Mirko Friedenhagen  wrote:
> 
>> AFAIK profiles _may not_ be activated via project properties, only via 
>> system-properties/environment variables.
>> Thinking loud: maybe set this in .mvn/maven.config?
> 
> I think Tamás meant to suggest auto-activating profiles based on the JDK 
> version 
> (https://maven.apache.org/guides/introduction/introduction-to-profiles.html#jdk).
> 
> Something like this:
> 
> 
> 
> 
>   21
> 
> 
>   
> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
> 
>   
>   
> 
>   25
> 
> 
>   
> docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23
> 
>   
> 
> 
> Nils.
> 
>>> Am 07.01.2026 um 18:11 schrieb Tamás Cservenák :
>>>
>>> Howdy,
>>>
>>> Would not doing this be simpler from a profile? Which is activated
>>> based on the Java version?
>>>
>>> T
>>>
>>> On Wed, Jan 7, 2026 at 5:36 PM Mirko Friedenhagen  
>>> wrote:

 Hi,

 is it somehow possible to add or modify the project resp. its properties 
 during e.g. validate or initialize with this plugin?
 I defined the following and want

 
 docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
 21
 

 
 
   maven-scripting-plugin
   3.1.0
   
   
   foo
   initialize
   eval
   
   java
    
 props.setProperty("docker-maven-plugin.from", 
 "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
   case "25" -> 
 props.setProperty("docker-maven-plugin.from", 
 "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
   default -> throw new 
 IllegalArgumentException("Not supported“);
   }
   System.err.println("Y " + 
 props.getProperty("docker-maven-plugin.from"));
   ]]>
   
   
   
   
 
 

 The println statement are executed and show the „correct“ result, however 
 when I lateron reference reference property docker-maven-plugin.from in a 
 plugin it still has the value of the definition in the standard properties 
 section.


 Mit freundlichen Grüßen
 Mirko Friedenhagen
> 
> 
> -
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: Modifying $project properties with maven-scripting-plugin?

2026-01-08 Thread Nils Breunese
Mirko Friedenhagen  wrote:

> AFAIK profiles _may not_ be activated via project properties, only via 
> system-properties/environment variables.
> Thinking loud: maybe set this in .mvn/maven.config?

I think Tamás meant to suggest auto-activating profiles based on the JDK 
version 
(https://maven.apache.org/guides/introduction/introduction-to-profiles.html#jdk).

Something like this:




  21


  
docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23

  
  

  25


  
docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23

  


Nils.

>> Am 07.01.2026 um 18:11 schrieb Tamás Cservenák :
>> 
>> Howdy,
>> 
>> Would not doing this be simpler from a profile? Which is activated
>> based on the Java version?
>> 
>> T
>> 
>> On Wed, Jan 7, 2026 at 5:36 PM Mirko Friedenhagen  
>> wrote:
>>> 
>>> Hi,
>>> 
>>> is it somehow possible to add or modify the project resp. its properties 
>>> during e.g. validate or initialize with this plugin?
>>> I defined the following and want
>>> 
>>> 
>>> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>>> 21
>>> 
>>> 
>>> 
>>> 
>>>   maven-scripting-plugin
>>>   3.1.0
>>>   
>>>   
>>>   foo
>>>   initialize
>>>   eval
>>>   
>>>   java
>>>   >>   var props = $project.getProperties();
>>>   System.err.println("X " + 
>>> props.getProperty("docker-maven-plugin.from"));
>>>   var version = 
>>> props.getProperty("java.version");
>>>   switch (version) {
>>>   case "21" -> 
>>> props.setProperty("docker-maven-plugin.from", 
>>> "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
>>>   case "25" -> 
>>> props.setProperty("docker-maven-plugin.from", 
>>> "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
>>>   default -> throw new 
>>> IllegalArgumentException("Not supported“);
>>>   }
>>>   System.err.println("Y " + 
>>> props.getProperty("docker-maven-plugin.from"));
>>>   ]]>
>>>   
>>>   
>>>   
>>>   
>>> 
>>> 
>>> 
>>> The println statement are executed and show the „correct“ result, however 
>>> when I lateron reference reference property docker-maven-plugin.from in a 
>>> plugin it still has the value of the definition in the standard properties 
>>> section.
>>> 
>>> 
>>> Mit freundlichen Grüßen
>>> Mirko Friedenhagen


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: Modifying $project properties with maven-scripting-plugin?

2026-01-08 Thread Mirko Friedenhagen
Sorry for talking to myself:

* While overriding is not possible, creating a *property* works...

Mit freundlichen Grüßen
Mirko Friedenhagen
— 


> Am 07.01.2026 um 17:35 schrieb Mirko Friedenhagen :
> 
> Hi,
> 
> is it somehow possible to add or modify the project resp. its properties 
> during e.g. validate or initialize with this plugin? 
> I defined the following and want 
> 
> 
>  
> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>  21
> 
> 
> 
> 
> maven-scripting-plugin
> 3.1.0
> 
> 
> foo
> initialize
> eval
> 
> java
>  var props = $project.getProperties();
> System.err.println("X " + props.getProperty("docker-maven-plugin.from"));
> var version = props.getProperty("java.version");
> switch (version) {
> case "21" -> props.setProperty("docker-maven-plugin.from", 
> "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
> case "25" -> props.setProperty("docker-maven-plugin.from", 
> "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
> default -> throw new IllegalArgumentException("Not supported“);
> }
> System.err.println("Y " + props.getProperty("docker-maven-plugin.from"));
> ]]>
> 
> 
> 
> 
> 
> 
> 
> The println statement are executed and show the „correct“ result, however 
> when I lateron reference reference property docker-maven-plugin.from in a 
> plugin it still has the value of the definition in the standard properties 
> section.
> 
> 
> Mit freundlichen Grüßen
> Mirko Friedenhagen
> — 
> 
> 


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: Modifying $project properties with maven-scripting-plugin?

2026-01-08 Thread Mirko Friedenhagen
AFAIK profiles _may not_ be activated via project properties, only via 
system-properties/environment variables.
Thinking loud: maybe set this in .mvn/maven.config?

Mit freundlichen Grüßen
Mirko Friedenhagen
— 

> Am 07.01.2026 um 18:11 schrieb Tamás Cservenák :
> 
> Howdy,
> 
> Would not doing this be simpler from a profile? Which is activated
> based on the Java version?
> 
> T
> 
> On Wed, Jan 7, 2026 at 5:36 PM Mirko Friedenhagen  
> wrote:
>> 
>> Hi,
>> 
>> is it somehow possible to add or modify the project resp. its properties 
>> during e.g. validate or initialize with this plugin?
>> I defined the following and want
>> 
>> 
>>  
>> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>>  21
>> 
>> 
>> 
>> 
>>maven-scripting-plugin
>>3.1.0
>>
>>
>>foo
>>initialize
>>eval
>>
>>java
>>>var props = $project.getProperties();
>>System.err.println("X " + 
>> props.getProperty("docker-maven-plugin.from"));
>>var version = 
>> props.getProperty("java.version");
>>switch (version) {
>>case "21" -> 
>> props.setProperty("docker-maven-plugin.from", 
>> "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
>>case "25" -> 
>> props.setProperty("docker-maven-plugin.from", 
>> "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
>>default -> throw new 
>> IllegalArgumentException("Not supported“);
>>}
>>System.err.println("Y " + 
>> props.getProperty("docker-maven-plugin.from"));
>>]]>
>>
>>
>>
>>
>> 
>> 
>> 
>> The println statement are executed and show the „correct“ result, however 
>> when I lateron reference reference property docker-maven-plugin.from in a 
>> plugin it still has the value of the definition in the standard properties 
>> section.
>> 
>> 
>> Mit freundlichen Grüßen
>> Mirko Friedenhagen
>> —
>> 
>> 
>> 
>> -
>> To unsubscribe, e-mail: [email protected]
>> For additional commands, e-mail: [email protected]
>> 
> 
> -
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: Modifying $project properties with maven-scripting-plugin?

2026-01-07 Thread Alexander Kriegisch
Wow, I never tried that before, just read the mojo documentation. This
sounds intriguing and very powerful. (I mean it.)

However, I want to just think aloud about possible consequences of
scripting a build like that: Your IDE might not be able to build and/or
run the project correctly anymore after importing/refreshing from the
Maven build, because it cannot interpret or emulate whatever you
scripted there. So, you might want to test that before happily
committing your clever solution.
--
Alexander Kriegisch
https://scrum-master.de


Greg Chabala schrieb am 08.01.2026 um 09:23:

> Not sure if it's possible from the scripting plugin, but I've definitely
> run a bit of Java code with the exec-maven-plugin and used the injected
> projectPropertiesUpdater callback to adjust project properties:
> https://www.mojohaus.org/exec-maven-plugin/java-mojo.html

-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: Modifying $project properties with maven-scripting-plugin?

2026-01-07 Thread Greg Chabala
Not sure if it's possible from the scripting plugin, but I've definitely
run a bit of Java code with the exec-maven-plugin and used the injected
projectPropertiesUpdater callback to adjust project properties:
https://www.mojohaus.org/exec-maven-plugin/java-mojo.html

Greg Chabala


Re: Modifying $project properties with maven-scripting-plugin?

2026-01-07 Thread Tamás Cservenák
Howdy,

Would not doing this be simpler from a profile? Which is activated
based on the Java version?

T

On Wed, Jan 7, 2026 at 5:36 PM Mirko Friedenhagen  wrote:
>
> Hi,
>
> is it somehow possible to add or modify the project resp. its properties 
> during e.g. validate or initialize with this plugin?
> I defined the following and want
>
> 
>   
> docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23
>   21
> 
>
> 
> 
> maven-scripting-plugin
> 3.1.0
> 
> 
> foo
> initialize
> eval
> 
> java
>  var props = $project.getProperties();
> System.err.println("X " + 
> props.getProperty("docker-maven-plugin.from"));
> var version = 
> props.getProperty("java.version");
> switch (version) {
> case "21" -> 
> props.setProperty("docker-maven-plugin.from", 
> "docker.io/library/eclipse-temurin:21.0.9_10-jre-alpine-3.23");
> case "25" -> 
> props.setProperty("docker-maven-plugin.from", 
> "docker.io/library/eclipse-temurin:25.0.1_8-jre-alpine-3.23");
> default -> throw new 
> IllegalArgumentException("Not supported“);
> }
> System.err.println("Y " + 
> props.getProperty("docker-maven-plugin.from"));
> ]]>
> 
> 
> 
> 
> 
> 
>
> The println statement are executed and show the „correct“ result, however 
> when I lateron reference reference property docker-maven-plugin.from in a 
> plugin it still has the value of the definition in the standard properties 
> section.
>
>
> Mit freundlichen Grüßen
> Mirko Friedenhagen
> —
>
>
>
> -
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>

-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]