Looks like the 2.13 maven build doesn’t work either. I’ve added the following defect:
https://bz.apache.org/bugzilla/show_bug.cgi?id=57734 Can you please add a test that just pulls down JMeter from maven and checks that the transient dependencies are there, this is the second release running that has had problems. It looks like the JMeter POMS are expecting <dependency> <groupId>commons-math3</groupId> <artifactId>commons-math3</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>commons-pool2</groupId> <artifactId>commons-pool2</artifactId> <version>2.3</version> </dependency> When they should be expecting <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> <version>2.3</version> </dependency>
