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
When I use the jvmVersion flag in the REST API, the resulting Gradle file does not have the sourceCompatibility set to 11 and is set to 17 instead.
jvmVersion
sourceCompatibility
curl https://start.spring.io/starter.tgz \ -d bootVersion=2.6.10 \ -d jvmVersion=11 \ -d dependencies=web,data-rest,lombok,data-jpa,h2,okta \ -d type=gradle-project \ -d baseDir=resource-server
The text was updated successfully, but these errors were encountered:
As stated by the output of curl https://start.spring.io the property is javaVersion, not jvmVersion. See also #958
curl https://start.spring.io
javaVersion
Sorry, something went wrong.
Ah. Thanks.
No branches or pull requests
When I use the
jvmVersion
flag in the REST API, the resulting Gradle file does not have thesourceCompatibility
set to 11 and is set to 17 instead.The text was updated successfully, but these errors were encountered: