kotlin-ipv8
kotlin-ipv8 copied to clipboard
The `apply plugin` syntax in the Gradle file seems to be deprecated
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'
}