创建Micronaut命令行应用程序时Kotlin不兼容

时间:2019-06-25 08:55:58

标签: kotlin command-line micronaut

每当我尝试使用Micronaut和Kotlin创建命令行应用程序时:

mn create-cli-app cli2 --features kotlin

我收到以下警告:

| Warning The following features are incompatible with other feature selections and have been removed from the project | kotlin

生成的项目已退回Java,这非常优美。

这是“错误”还是当前的预期行为?

1 个答案:

答案 0 :(得分:2)

要选择语言(java,groovy或kotlin),最好使用--lang标志而不是--features。 正在执行:

$ mn create-cli-app mycli --lang=kotlin
| Generating Kotlin project...
| Application created at /tmp/mycli

按预期工作。