Róbert Papp
Róbert Papp
```gradle tasks.withType(JavaCompile) { it.options.compilerArgs += [ ... ] if (it.name.endsWith("AndroidTestJavaWithJavac") || it.path.contains(":twister-lib-android:") || it.path.startsWith(':android:database:test_helpers:')) { it.doFirst { // TODO move to plugin def duplicates = it .options.compilerArgs .grep { it.startsWith("-Xlint:-")...
From Inventory build.gradle @ 2862: ```gradle tasks.withType(JavaCompile) { it.options.compilerArgs += [ // enable all warnings "-Xlint:all", // TODO check my plugin, maybe java-library and java are not compatible there //...
It just makes it harder in some cases to set up the tasks properly, because the order of the plugin applications are not helping. See `Checkstyle.setConfigDir` call for example. It...
When using `afterEvaluate { forAllReportTasks }` in `ValidateViolationsTask` constructor + `forAllReportTasks` using `forEach` instead of `configureEach`. Running on Gradle 3.3.1 ``` Execution failed for task ':violationReportHtmlLateConfiguration'. > java.util.ConcurrentModificationException (no error...
`net.twisterrob.gradle.test.*` in private Gradle project
see `Base64.getEncoder().encodeToString(v.location.file.readBytes())`
* Re https://github.com/Kotlin/kotlinx-datetime/pull/336 which fixed https://github.com/Kotlin/kotlinx-datetime/issues/297 This re-fixes https://github.com/Kotlin/kotlinx-datetime/issues/297. cc @dkhalanskyjb @MarcelReiter @LouisCAD ## Why? The current solution on `master` is not broken, but it references the wrong library. Why?...