Gradle Scala Plugin - how to specify zincClasspath

蓝咒 提交于 2019-12-01 18:16:48

Fixed this myself in the end, the clue was that it was running on my Local machine but not my VM... of course my Gradle version was different.

Upgrading to Gradle 3.0 fixed this

I ran into this issue again recently, adding the following to my Gradle build script seemed to fix it:

ScalaCompileOptions.metaClass.daemonServer = true
ScalaCompileOptions.metaClass.fork = true
ScalaCompileOptions.metaClass.useAnt = false
ScalaCompileOptions.metaClass.useCompileDaemon = false
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!