events-gatling-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.perfana</groupId> <artifactId>events-gatling-maven-plugin</artifactId> <version>4.7.0-events-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> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>io.perfana</groupId> <artifactId>events-gatling-maven-plugin</artifactId> <version>4.7.0-events-1</version> <name>events-gatling-maven-plugin</name> <description>Forked from gatling-maven-plugin, this version adds event-scheduler integration.</description> <packaging>maven-plugin</packaging> <inceptionYear>2011</inceptionYear> <url>https://gatling.io</url> <developers> <developer> <id>slandelle@gatling.io</id> <name>Stephane Landelle</name> <organization>Gatling Corp</organization> </developer> <developer> <id>daniel@perfana.io</id> <name>Daniel Moll</name> <organization>Perfana</organization> </developer> <developer> <id>peter.paul@perfana.io</id> <name>Peter Paul Bakker</name> <organization>Perfana</organization> </developer> </developers> <scm> <connection>scm:git:git:@github.com:perfana/events-gatling-maven-plugin.git</connection> <developerConnection>scm:git:git:@github.com:parfana/events-gatling-maven-plugin.git</developerConnection> <url>https://github.com/perfana/events-gatling-maven-plugin</url> <tag>HEAD</tag> </scm> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <repositories> <!-- allow to work with snapshot versions --> <repository> <id>oss.sonatype.org-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <properties> <encoding>UTF-8</encoding> <maven.compiler.release>11</maven.compiler.release> <maven3.version>3.0</maven3.version> <plexus-utils.version>3.4.2</plexus-utils.version> <header.basedir>${project.basedir}</header.basedir> <junit.version>5.10.1</junit.version> <zt-zip.version>1.16</zt-zip.version> <commons-exec.version>1.3</commons-exec.version> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <maven-plugin-plugin.version>3.10.2</maven-plugin-plugin.version> <maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version> <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <maven-surefire-plugin.version>3.1.0</maven-surefire-plugin.version> <spotless-maven-plugin.version>2.41.1</spotless-maven-plugin.version> <gatling-enterprise-plugin-commons.version>1.8.0</gatling-enterprise-plugin-commons.version> <event-scheduler.version>4.0.3</event-scheduler.version> </properties> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>${commons-exec.version}</version> </dependency> <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.apache.maven</groupId> <artifactId>maven-core</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.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> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.perfana</groupId> <artifactId>event-scheduler</artifactId> <version>${event-scheduler.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> <goalPrefix>events-gatling</goalPrefix> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> </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://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> <keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> <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> <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> </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>