gatling-maven-plugin
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.gatling</groupId> <artifactId>gatling-maven-plugin</artifactId> <version>4.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>io.gatling</groupId> <artifactId>gatling-maven-plugin</artifactId> <version>4.3.0</version> <packaging>maven-plugin</packaging> <name>gatling-maven-plugin</name> <description>gatling-maven-plugin</description> <url>https://gatling.io</url> <inceptionYear>2011</inceptionYear> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>slandelle@gatling.io</id> <name>Stephane Landelle</name> <organization>Gatling Corp</organization> </developer> </developers> <scm> <connection>scm:git:git:@github.com:gatling/gatling-maven-plugin.git</connection> <developerConnection>scm:git:git:@github.com:gatling/gatling-maven-plugin.git</developerConnection> <tag>0044e1d1fe064215266bcab4c910dd392fef2227</tag> <url>https://github.com/gatling/gatling-maven-plugin</url> </scm> <properties> <gatling-enterprise-plugin-commons.version>1.5.1</gatling-enterprise-plugin-commons.version> <zt-zip.version>1.15</zt-zip.version> <maven3.version>3.0</maven3.version> <encoding>UTF-8</encoding> <maven-plugin-plugin.version>3.7.1</maven-plugin-plugin.version> <junit.version>5.9.1</junit.version> <spotless-maven-plugin.version>2.28.0</spotless-maven-plugin.version> <plexus-utils.version>3.4.2</plexus-utils.version> <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> <maven.compiler.target>1.8</maven.compiler.target> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <header.basedir>${project.basedir}</header.basedir> <maven.compiler.source>1.8</maven.compiler.source> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven3.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven3.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>${plexus-utils.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>${maven3.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.zeroturnaround</groupId> <artifactId>zt-zip</artifactId> <version>${zt-zip.version}</version> </dependency> <dependency> <groupId>io.gatling</groupId> <artifactId>gatling-enterprise-plugin-commons</artifactId> <version>${gatling-enterprise-plugin-commons.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> <executions> <execution> <id>spotless-apply</id> <phase>process-resources</phase> <goals> <goal>apply</goal> </goals> </execution> <execution> <id>spotless-verify</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <java> <includes> <include>src/main/java/**/*.java</include> <include>src/test/java/**/*.java</include> </includes> <googleJavaFormat /> <licenseHeader> <file>${header.basedir}/src/etc/header.txt</file> </licenseHeader> </java> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>Release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>