Vladimir Sitnikov
Vladimir Sitnikov
I rebased "option 2", and now I'm puzzled. It fails on test cases like `assertEquals(new Header("accept", "*/*"), httpSampler.getHeaderManager().getHeader(0));` https://github.com/apache/jmeter/blob/5020590c2dd6564e87cc2295e0090d2c6526c436/src/protocol/http/src/test/java/org/apache/jmeter/gui/action/ParseCurlCommandActionTest.java#L254-L255 The code that compares elements like `if (file.equals(item)) {` seems to...
I'm going to merge this PR shortly unless there are objections. An alternative https://github.com/apache/jmeter/pull/5727 is not dramatically smaller, and it breaks backward compatibility. It looks like external users have much...
That is doable if you post-configure the signing plugin. For instance, something like ```kotlin plugins.withId("signing") { configure { useInMemoryPgpKeys(.., ...) } } ``` I guess you could add it to...
>For my understanding, is it possible to replace plugins.withId("signing") { ... } by signing { ... }? That depends. If you have `plugins { signing }` at the beginning of...
I guess it is caused by https://bugs.eclipse.org/bugs/show_bug.cgi?id=560555 However, it should not fail the build. WA seems to set XDG_CONFIG_HOME environment variable to a writable location.
Requires Kotlin 1.6
Unfortunately, there's no clear way of adding generated index into `resources`. In Gradle, `resource` files are inputs to compilation tasks. `jar index` takes compilation results and it creates the index....
If `processJandexIndex` removes other files from `build/resources/...`, then I should probably use a different class for `processJandexIndex` itself. E.g. make it a regular `sync` task that copies only a single...
>Would adding the "build/jandex/jandexMain" dir as a resource dir to the source set solve the testing issue? The issue is that Gradle assumes all resource directories are **inputs** for `compileJava`...
I have not tried that.