我需要为swagger-ui解析Kotlin文档(而不是swagger注解)。
我试过了,但没用。
这里是我的springdoc依赖项(springdocVersion =“1.6.6”)。顺便说一下,如果它很重要,我不能使用therapi版本0.13.0。
runtimeOnly("org.springdoc:springdoc-openapi-kotlin:$springdocVersion")
implementation("org.springdoc:springdoc-openapi-ui:$springdocVersion")
implementation("org.springdoc:springdoc-openapi-webflux-ui:$springdocVersion")
implementation("org.springdoc:springdoc-openapi-javadoc:$springdocVersion")
annotationProcessor("com.github.therapi:therapi-runtime-javadoc-scribe:0.12.0")
implementation("com.github.therapi:therapi-runtime-javadoc:0.12.0")
1条答案
按热度按时间zynd9foi1#
在我用
kapt("com.github.therapi:therapi-runtime-javadoc-scribe:0.12.0")
替换了annotationProcessor("com.github.therapi:therapi-runtime-javadoc-scribe:0.12.0")
之后,一切都运行得很好!构建文件的示例可在here中找到