每当我尝试使用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,这非常优美。
这是“错误”还是当前的预期行为?
答案 0 :(得分:2)
要选择语言(java,groovy或kotlin),最好使用--lang
标志而不是--features
。
正在执行:
$ mn create-cli-app mycli --lang=kotlin
| Generating Kotlin project...
| Application created at /tmp/mycli
按预期工作。