在Kotlin中,在Intellij上使用gradle运行Spring Boot的任务bootRun,我得到以下错误:
BUILD FAILED
Total time: 0.085 secs
Could not set unknown property 'addResources' for task ':bootRun'
of type org.springframework.boot.gradle.tasks.run.BootRun.
我正在使用kotlinVersion ='1.1.4-3',springBootVersion ='2.0.0.M3'而我的bootrun任务在我的gradle.build中看起来如下
bootRun
{
addResources = true
}
我的bootRun按预期工作,无需调整bootRun任务
答案 0 :(得分:12)
您使用的是addResources
属性不再存在的Spring Boot 2.0。相反,您需要将sourceResources
属性设置为要使用的源集。通常是sourceSets.main
。这在plugin’s documentation。