Skip to content
New issue

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

The apply plugin syntax in the Gradle file seems to be deprecated #51

Open
devos50 opened this issue Jul 27, 2021 · 0 comments
Open

The apply plugin syntax in the Gradle file seems to be deprecated #51

devos50 opened this issue Jul 27, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@devos50
Copy link
Contributor

devos50 commented Jul 27, 2021

We are using the apply plugin syntax in the Gradle build files:

apply plugin: "application"
apply plugin: "kotlin"
apply plugin: "kotlinx-serialization"

This syntax, however, is not recommended anymore, also see here. Instead, we could use the plugins directive like:

plugins {
    id 'org.jetbrains.kotlin.<...>' version '1.5.21'
}
@devos50 devos50 added the enhancement New feature or request label Jul 27, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant