Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

java.lang.VerifyError creating a gradle task with kotlin

I try to write a gradle task with kotlin, this is my code.:

GreetingTask.kt

class GreetingTask : DefaultTask() {
    @TaskAction
    fun greet() {
        println("greet!")
    }
}

build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:0.12.613"
    }
}

apply plugin: "kotlin"

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib:0.12.613"
    compile gradleApi()
}

GreetingTaskTest

class GreetingTaskTest {

    @Test
    public fun canAddTaskToProject() {
        val project = ProjectBuilder.builder().build()
        val task = project.task(hashMapOf("type" to javaClass<GreetingTask>()), "greeting")
        assertTrue(task is GreetingTask)
    }
}

When running the test now it results in a:

java.lang.VerifyError at GreetingTaskTest.kt:20
// reason -> Cannot inherit from final class

Which is this line:

val task = project.task(hashMapOf("type" to javaClass<GreetingTask>()), "greeting")

What i would like to know is:

Where does this issue come from and how do i fix it?

like image 420
Ostkontentitan Avatar asked Jul 17 '15 08:07

Ostkontentitan


1 Answers

Classes in Kotlin are final by default, compared to open in java.

Declare the class GreetingTask as "open" and this error message is gone.

open class GreetingTask : DefaultTask() { 
    ...
}
like image 115
D3xter Avatar answered Nov 11 '22 14:11

D3xter