We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a12eff commit fc3fe67Copy full SHA for fc3fe67
jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/engines/EmbeddedJmeterEngine.java
@@ -94,6 +94,8 @@ public TestPlanStats run(DslTestPlan testPlan) throws IOException {
94
}
95
96
protected TestPlanStats runInEnv(DslTestPlan testPlan, JmeterEnvironment env) throws IOException {
97
+ // Avoid warning in java 11
98
+ System.setProperty("nashorn.args", "--no-deprecation-warning");
99
Properties jmeterProps = JMeterUtils.getJMeterProperties();
100
if (propsFile != null) {
101
try (FileInputStream is = new FileInputStream(propsFile)) {
0 commit comments