/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ plugins { id 'java' id 'io.gatling.gradle' version '3.9.0' } configurations.all { exclude group: 'io.pebbletemplates', module: 'pebble' } group 'org.opensearch.dataprepper.test.performance' repositories { mavenCentral() } dependencies { implementation 'com.fasterxml.jackson.core:jackson-core' testRuntimeOnly testLibs.junit.engine } test { useJUnitPlatform() }