gitgabrio opened a new issue, #2071:
URL: https://github.com/apache/incubator-kie-issues/issues/2071

   This [PR](https://github.com/apache/incubator-kie-kogito-runtimes/pull/4010) 
changed the assignment of to variables inside GeneratedModelMojo from:
   
   
      ```java
   @Parameter(defaultValue = "17", property = "maven.compiler.source")
       private String compilerSourceJavaVersion;
   
       @Parameter(defaultValue = "17", property = "maven.compiler.target")
       private String compilerTargetJavaVersion;
   ```
   
   to
   
      ```java
   @Parameter(defaultValue = "17", property = "maven.compiler.release")
       private String compilerSourceJavaVersion;
   
       @Parameter(defaultValue = "17", property = "maven.compiler.release")
       private String compilerTargetJavaVersion;
   ```
   
   making them exactly the same.
   Scope of this ticket is to remove the duplication and have only one variable 
around
   
   @yesamer @baldimir @elguardian 
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to