依赖
Kotlin有一个广泛的标准库可以在应用中使用。将下面的依赖配置到pom文件中:
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
如果你在使用JDK7或JDK8,你可以使用Kotlin标准库的扩展版本,其包含一些额外的API扩展函数。根据你的JDK版本来决定使用kotlin-stdlib-jre7或kotlin-stdlib-jre8来替换kotlin-stdlib。
如果你的工程使用了Kotlin reflection或测试功能,你需要添加相应的依赖。对应的artifact id为kotlin-reflect,kotlin-test和kotlin-test-junit。