Mike Kobit

Results 93 comments of Mike Kobit

Something like this would be _very_ welcome. Markdown is rendered poorly and is hard to read on Bitbucket, and AsciiDoctor is only rendered slightly better. Would love for the output...

Tough to say exactly what the output should be. I think it could be useful to have all of the output go.. somewhere with tracking the results and invocations of...

It has been a little bit of time since the last update, so just wondering if this is still on the radar and if Flyway's APIs can be adapted to...

@StefMa getting a compiler error is my expectation due to an unresolved reference, but the failure now happens at runtime with a `NullPointerException`. Similar to your example in "pure Kotlin":...

In a similar fashion, with Gradle 4.10 the following block compiles fine in a `build.gradle.kts` ```kotlin val help: Task by tasks.getting val help: TaskProvider by tasks.existing val help: Help by...

In a similar fashion, when using the `application` plugin with static task accessors `run` resolves to the Kotlin Stdlib [`run`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/run.html) method ```kotlin tasks { run { // TaskContainerScope, not JavaExec...

Good call with the star import (although I try not to use them) - definitely makes sense to report upstream as this is most likely an IntelliJ issue - I...

Finally reported upstream at https://youtrack.jetbrains.com/issue/KT-22101 - the issue could use a friendlier description that isn't as much `kotlin-dsl` but I did not write it yet.

This also happens when using `by registering` in a plugin which requires `import org.gradle.kotlin.dsl.provideDelegate` or `import import org.gradle.kotlin.dsl.*` as previously suggested.