Kotlin's kapt plugin for gradle does not work for custom source set (JMH)

谁说我不能喝 提交于 2019-12-14 03:54:39

问题


Having a Kotlin project with Gradle setup:

apply plugin: 'kotlin'
apply plugin: 'kotlin-kapt'

dependencies {
    kapt 'org.openjdk.jmh:jmh-generator-annprocess:1.18'
    ...
}

Putting benchmarks under src/main/kotlin works without problems.

But when i add a custom source-set for JMH:

sourceSets {
    jmh {
        compileClasspath += sourceSets.test.runtimeClasspath
        runtimeClasspath += sourceSets.test.runtimeClasspath
    }
}

And move the benchmarks from src/main/kotlin to src/jmh/kotlin, executing the benchmarks fails with:

Exception in thread "main" java.lang.RuntimeException: ERROR: Unable to find the resource: /META-INF/BenchmarkList
    at org.openjdk.jmh.runner.AbstractResourceReader.getReaders(AbstractResourceReader.java:98)
    at org.openjdk.jmh.runner.BenchmarkList.find(BenchmarkList.java:122)
    at org.openjdk.jmh.runner.Runner.internalRun(Runner.java:256)
    at org.openjdk.jmh.runner.Runner.run(Runner.java:206)
    at org.openjdk.jmh.Main.main(Main.java:71)

It looks like kaptJmhKotlin isn't doing anything:

kaptGenerateStubsJmhKotlin UP-TO-DATE
Skipping task ':kaptJmhKotlin' as it has no source files and no previous output files.
:kaptJmhKotlin NO-SOURCE
:compileJmhKotlin

Any idea how to resolve the problem ?


回答1:


kapt in this context defines a dependency for the main source set's kapt configuration, just like compile and runtime do.

dependencies {
  kaptJmh 'org.openjdk.jmh:jmh-generator-annprocess:1.18'
}

fixes the problem for me.

I expected it to be jmhKapt by analogy with jmhCompile, but this produces

Couldn't find method jmhCapt


来源:https://stackoverflow.com/questions/45085806/kotlins-kapt-plugin-for-gradle-does-not-work-for-custom-source-set-jmh

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