kotlin-ipv8 icon indicating copy to clipboard operation
kotlin-ipv8 copied to clipboard

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

Open devos50 opened this issue 4 years ago • 0 comments
trafficstars

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 avatar Jul 27 '21 07:07 devos50