edgegrid-signer-gatling
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.akamai.edgegrid</groupId> <artifactId>edgegrid-signer-gatling</artifactId> <version>4.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>edgegrid-signer-parent</artifactId> <groupId>com.akamai.edgegrid</groupId> <version>4.1.1</version> </parent> <artifactId>edgegrid-signer-gatling</artifactId> <packaging>jar</packaging> <name>Gatling binding for EdgeGrid Client</name> <dependencies> <dependency> <groupId>com.akamai.edgegrid</groupId> <artifactId>edgegrid-signer-async-http-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.gatling</groupId> <artifactId>gatling-app</artifactId> </dependency> <dependency> <groupId>io.gatling.highcharts</groupId> <artifactId>gatling-charts-highcharts</artifactId> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>4.5.3</version> <executions> <execution> <goals> <goal>add-source</goal> <goal>compile</goal> <goal>doc-jar</goal> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.gatling</groupId> <artifactId>gatling-maven-plugin</artifactId> <version>3.1.2</version> <configuration> <runMultipleSimulations>true</runMultipleSimulations> <disableCompiler>true</disableCompiler> <resourcesFolder>${project.basedir}/src/test/resources</resourcesFolder> </configuration> <executions> <execution> <id>gatling-integration-tests</id> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>