It seems to be an issue with a initialization scri...
# gradle
s
It seems to be an issue with a initialization script that Jetbrains is producing with the Kotlin Gradle DSL. The contents of the script file that it's have an exception with:
Copy code
initscript {
  dependencies {
    classpath files(["/Users/shan/Library/Application Support/JetBrains/Toolbox/apps/IDEA-U/ch-0/192.6817.14/IntelliJ <http://IDEA.app/Contents/plugins/gradle/lib/gradle-tooling-extension-impl.jar%22,%22/Users/shan/Library/Application|IDEA.app/Contents/plugins/gradle/lib/gradle-tooling-extension-impl.jar","/Users/shan/Library/Application> Support/JetBrains/Toolbox/apps/IDEA-U/ch-0/192.6817.14/IntelliJ <http://IDEA.app/Contents/lib/gson-2.8.5.jar%22])|IDEA.app/Contents/lib/gson-2.8.5.jar"])>
  }
}
allprojects {
  afterEvaluate { project ->
    if(project.path == ':') {
        project.tasks.create(name: 'DependenciesReport', overwrite: true, type: org.jetbrains.plugins.gradle.tooling.tasks.DependenciesReport) {
outputFile = project.file("/private/var/folders/2w/1d5gpbj54_s_gkmfc4xywkdh0000gn/T/dependencies.json")
configurations = []

        }
    }
  }
}
o
probably something to report to the intellij team then
c
I guess is the
idea
plugin, isn't it? Or is really just the Kotlin-dsl??
o
neither, it's just how the intellij program is generating this build script. has nothing to do with the idea plugin
😮 1
s
I have reported in on YouTrack, it's a confirmed bug.
c
Link to the issue?