Robert Kruszewski

Results 111 comments of Robert Kruszewski

You're correct that we reference the intellij config file in the intellij plugin and that needs fixing. You can already specify custom configuration bundle. https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.Configuration.html#org.gradle.api.artifacts.Configuration:defaultDependencies(org.gradle.api.Action) you can see that defaultDependencies...

How about `Futures#getUnchecked`?

shouldn't this be handled by gradle itself? All other jvm languages seem to be working ootb

sigh, this had just came up on a pr and I looked at gradle and in fact groovy is not automatically handled in https://github.com/gradle/gradle/blob/master/subprojects/ide/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java#L132-L138

Though https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java#L112 looks like it should work

Just FYI - this behaves weirdly with latest EAP releases (2018.3), opens 2 windows where none of them have all the function bars

This looks like an issue with jgit where we automatically pulled in new jgit version that no longer supports java 8. While it's unfortunate I think it's reasonable to say...

Looks like this is a side effect of https://github.com/palantir/gradle-git-version/pull/581 which bumped jgit to 6.x to support submodules properly

While DockerComposeUp only operates on single file that docker-compose file can reference other docker-compose files. It's a common pattern to define one global file with all the settings and many...