- Java: 1.8.0_301
- Maven: 3.8.6
- JMeter-Maven-Plugin: 3.6.1
This might be related to #419, but I'm not 100% sure on that.
I've tried to supply <testPlanLibraries> with a number of <artifact> entries.
Unfortunately, it brings in ALL transitive dependencies from those artifacts, including those at test scopes.
So to try and alleviate that, I attempted to exclude the test scoped transitive dependencies via <excludedArtifacts>.
It appears as if <testPlanLibraries> takes precedence over <excludedArtifacts>, because NONE of the <exclusion> entries that I supplied under <excludedArtifacts> were actually excluded.
This might be related to #419, but I'm not 100% sure on that.
I've tried to supply
<testPlanLibraries>with a number of<artifact>entries.Unfortunately, it brings in ALL transitive dependencies from those artifacts, including those at
testscopes.So to try and alleviate that, I attempted to exclude the
testscoped transitive dependencies via<excludedArtifacts>.It appears as if
<testPlanLibraries>takes precedence over<excludedArtifacts>, because NONE of the<exclusion>entries that I supplied under<excludedArtifacts>were actually excluded.