Christian Grach
Christian Grach
Forwarding discussion from https://github.com/ben-manes/gradle-versions-plugin/commit/1c6627ecc8d6f49ab89d5b7e73770ee9a9b03799#commitcomment-37635505
It's not about plugin authors. We have many projects where we define our own plugins within the project. I'd vote for the flag - let the user of your plugin...
if you use the Gradle Kotlin DSL it should be like this ``` protobuf { protoc { artifact = "com.google.protobuf:protoc:" } generateProtoTasks { all().forEach { task -> task.builtins { id("java")...
@ScottPierce I've found a workaround for now. You can create your own "schema generation module". have a look at https://github.com/chrimaeon/curriculumvitae/blob/2f206be18e0ffb25bced113c2ddf24e67cc97a6f/backend/src/main/kotlin/com/cmgapps/ktor/curriculumvitae/infra/victools/CustomModule.kt and https://github.com/chrimaeon/curriculumvitae/blob/2f206be18e0ffb25bced113c2ddf24e67cc97a6f/backend/src/main/kotlin/com/cmgapps/ktor/curriculumvitae/Application.kt#L177