Róbert Papp
Róbert Papp
https://youtrack.jetbrains.com/issue/KT-25749
Curtesy of `@lwasyl` from https://androidstudygroup.slack.com/archives/C03KKLGC2/p1617712300160800 https://docs.gradle.org/current/userguide/build_services.html ```gradle // in project root module's build.gradle tasks.register("connectedCheck").configure { dependsOn(subprojects.collect { "${it.path}:connectedCheck" }) } evaluationDependsOnChildren() // TODO somehow remove this allprojects \ .collectMany {...
`org.gradle.configureondemand=true` fails `:plugin:test` task. Note: parallel, caching can be turned off, those don't have an effect here. ``` Configuration on demand is an incubating feature. Type-safe dependency accessors is an...
```diff Index: test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== diff --git a/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt b/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt --- a/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt +++ b/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt @@ -80,12 +80,12 @@ } } - internal fun before() { +...
also try it on jvmArgs
https://github.com/JakeWharton/docker-mbsync/blob/master/.github/workflows/build_and_publish.yml
https://docs.gradle.org/current/userguide/java_testing.html#publishing_test_fixtures
``` android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = false ```