我想为我的 Kotlin 项目启用显式 API 模式。但是,我找不到如何做到这一点的方法。在网站上,我只能看到gradle
基于配置:
kotlin {
// for strict mode
explicitApi()
// or
explicitApi = ExplicitApiMode.Strict
}
我想为我的 Kotlin 项目启用显式 API 模式。但是,我找不到如何做到这一点的方法。在网站上,我只能看到gradle
基于配置:
kotlin {
// for strict mode
explicitApi()
// or
explicitApi = ExplicitApiMode.Strict
}
我相信您正在使用kotlin-maven-plugin
,因此您可以像这样将其他参数传递给编译器
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>...</executions>
<configuration>
<args>
<arg>-Xexplicit-api=strict</arg> <!-- Enable explicit api mode -->
...
</args>
</configuration>
</plugin>
更多信息可以在这里找到:https ://kotlinlang.org/docs/reference/using-maven.html#specifying-compiler-options