We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enforce usage of JDK 17 at build time
It seems required as indicated in the README...
No response
The text was updated successfully, but these errors were encountered:
Using the Maven enforcer plugin?
Sorry, something went wrong.
@garydgregory Adding <level>ERROR</level> just does the trick:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>${minimalMavenBuildVersion}</version> </requireMavenVersion> <requireJavaVersion> <level>ERROR</level> <version>${minimalJavaBuildVersion}</version> </requireJavaVersion> ...
👍
No branches or pull requests
Description
Enforce usage of JDK 17 at build time
Motivation
It seems required as indicated in the README...
Alternatives considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: