Hi I am trying to import some proto files with gradle but I have added the plugin and the proto source set is still not recognized and nothing works:
plugins {
`astraunot-kotlin`
id("com.google.protobuf") version "0.9.4"
}
group = "net.astraunot.api.central"
version = "1.0.1"
repositories {
mavenCentral()
}
val protobufVersion = "4.26.1"
dependencies {
implementation("com.google.protobuf:protobuf-kotlin:$protobufVersion")
implementation("com.google.protobuf:protobuf-java-util:$protobufVersion")
}