https://kotlinlang.org logo
#announcements
Title
# announcements
x

xolan

02/21/2017, 1:58 PM
Copy code
apply plugin: 'kotlin'
apply plugin: 'application'
apply plugin: 'org.junit.platform.gradle.plugin'

buildscript {
    ext.kotlin_version = '1.0.6'

    repositories {
        mavenCentral()
    }

    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M3'
    }
}
---snip---
Copy code
FAILURE: Build failed with an exception.

* Where:
Build file '/home/xolan/work/accounter/build.gradle' line: 1

* What went wrong:
A problem occurred evaluating root project 'accounter'.
> Failed to apply plugin [id 'kotlin']
   > For input string: ""
Any suggestions? Can't seem to figure this one out
Solved by upgrading gradle to 3.4
3 Views