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
After upgrading the Spring Boot dependency from 1.3.4 to 1.4.3, Gradle gives the following warning when running the build command:
build
The plugin id 'spring-boot' is deprecated. Please use 'org.springframework.boot' instead.
Fixing this is a no brainer: just replace all occurrences of
apply plugin: "spring-boot"
with
apply plugin: "org.springframework.boot"
Have a look at the Spring Boot Plugin usage snippet.
The text was updated successfully, but these errors were encountered:
the only build files to modify are:
components/cli/cli.gradle components/server/server.gradle
Sorry, something went wrong.
implemented changes in v1.1.0-beta, see #11.
No branches or pull requests
After upgrading the Spring Boot dependency from 1.3.4 to 1.4.3, Gradle gives the following warning when running the
build
command:Fixing this is a no brainer: just replace all occurrences of
with
Have a look at the Spring Boot Plugin usage snippet.
The text was updated successfully, but these errors were encountered: