sebb> Could not find implementation class 'org.apache.jmeter.build.WitnessPlugin'
I've corrected that. Basically I renamed org.apache.jmeter.build => org.apache.jmeter.buildtools. The not so funny thing is it was caused by unfortunate naming for the package. Initially I placed the code right into "org.apache.jmeter.WitnessPlugin", however then I decided "org.apache.jmeter.build" should be better package name for the tool. Unfortunately, it was killed by "build/" entry in ".gitignore" file which basically kills all the build directories at all the levels. In rat-excludes.txt I used a bit more defensive approach like "src/*/build/**" so it doesn't accidentally skip rat. However I think this "build" item is a minor one (hope it was the last time we run into that), so we can reiterate on .gitignore later. Vladimir