mricciuti
mricciuti
You just need to convert your Groovy "array" notation to Kotlin list: ``` jmeter { jmTestFiles = listOf(file("src/test/jmeter/test2.jmx")) //if jmx file is not in the default location jmSystemPropertiesFiles= listOf(file("src/test/jmeter/jmeter.properties")) //to...
I found two recent versions of this plugin built from forks of this project: - https://plugins.gradle.org/plugin/io.quintessent.jmeter ( version 1.1.1-5.0 ) - https://plugins.gradle.org/plugin/com.patdouble.jmeter-gradle-plugin ( version 1.2.0-5.3 ) Unfortunatly, I did not...
Hi @DanielThomas , pinging you as there are others PRs waiting to be checked for quite some time, maybe you would be happy to check/merge those as well? ( eg.:...
an old PR already exists to fix this: https://github.com/nebula-plugins/gradle-ospackage-plugin/pull/414
Version 11.5 0 is available on Gradle plugin portal but plugin coordinates have changed, see https://github.com/nebula-plugins/gradle-ospackage-plugin/issues/426 ( => https://plugins.gradle.org/plugin/com.netflix.nebula.ospackage )
Hi @rpalcolea , would you mind having a look at this PR (and also https://github.com/nebula-plugins/gradle-ospackage-plugin/pull/417 ) ? I think the proposed fix is safe, there is a dedicated unit test;...
When looking at `endVisit()` method here https://github.com/nebula-plugins/gradle-ospackage-plugin/blob/main/src/main/groovy/com/netflix/gradle/plugins/packaging/AbstractPackagingCopyAction.groovy#L110 : ``` void endVisit() { // ... for (Dependency provides : task.getAllProvides()) { // ///
this PR will fix it: https://github.com/nebula-plugins/gradle-ospackage-plugin/pull/417
Seems that this bug is coming from this line : https://github.com/nebula-plugins/gradle-ospackage-plugin/blob/main/src/main/groovy/com/netflix/gradle/plugins/rpm/Rpm.groovy#L70 ``` // Could come from extension mapping.map('fileType', { parentExten?.getFileType() }) // HERE : if `ospackage.addParentDirs` is not set, or...
Hi. I found out that we need to provide the full qualified name of the HttpTask as follows: task notify(type: io.github.httpbuilderng.http.HttpTask) { config { request.uri = 'http://something.com' } post {...