Environment
Gradle Version: 3.0
Operating System: OSX El Capitan (10.11.6)
This worked fine in 2.4
IntelliJ IDEA 2016.2.2
Build #IU-162.1628.40, built on August 16, 2016
JRE: 1.8.0_76-release-b216 x86_64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
A simple build file like this:
apply plugin: 'scala'
dependencies {
compile ('org.scala-lang:scala-library:2.10.4')
}
Will result in a warning in the idea messages tab “Gradle sync”
Unable to build Scala project configuration
Details: groovy.lang.MissingPropertyException: No such property: daemonServer for class: org.gradle.api.tasks.scala.ScalaCompileOptions
```
Which renders my module broken (no scala compiler configured and can't build the sources)
As mentioned in the release notes https://docs.gradle.org/current/release-notes#ant-based-scala-compiler-has-been-removed
The property `daemonServer` has been removed since the migration from the Ant-based compiler to the Zinc Scala Compiler, which most probably is the cause of this issue.
As this is more of a problem over at IDEA I made sure there was an issue filed, https://youtrack.jetbrains.com/issue/IDEA-160175 but I still think it is worth mentioning over here as there might be a way to make the current plugin backwards compatible and we might get a working idea/gradle scala plugin before they keep up over at JetBrains.