rmannibucau commented on PR #8407:
URL: https://github.com/apache/hop/pull/8407#issuecomment-5700583254
@mattcasters the build harness wrongly requirements (java and maven
versions):
````
[INFO] --- enforcer:3.6.2:enforce (enforce-maven-version) @ hop ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.version.RequireMavenVersion
passed
[INFO]
[INFO] --- enforcer:3.6.2:enforce (enforce-java-version) @ hop ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.version.RequireJavaVersion
passed
````
the values coming from parent pom are:
```
<javaVersion>8</javaVersion>
<minimalMavenBuildVersion>3.9</minimalMavenBuildVersion>
<minimalJavaBuildVersion>${javaVersion}</minimalJavaBuildVersion>
```
so this is what to harness to ensure the maven and java versions are
compatible with the build.
this also applies to plugin versions.
if you respect all that it will run on compatible environments and not on
too old ones like older ubuntu/debian.
there is no real clean way to support them all and maven will be more
aggressive in the future so it shouldn't even be tried IMHO.
--
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]