I found the reason of the repo problem with my for...
# gradle
e
I found the reason of the repo problem with my fork of the jmh plugin, in groovy this is lazily executed
Copy code
createTask(project, JMH_JAR_TASK_NAME, Jar) {
            ...
            it.from {
                runtimeConfiguration.asFileTree.collect { File f ->
                    f.isDirectory() ? f : project.zipTree(f)
                }
            }.exclude(metaInfExcludes)
in kotlin right away.. isn't there a corresponding method accepting a lambda? I cant seem to find one