jmeter-graph-tool-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.vdaburon</groupId> <artifactId>jmeter-graph-tool-maven-plugin</artifactId> <version>1.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.vdaburon</groupId> <artifactId>jmeter-graph-tool-maven-plugin</artifactId> <version>1.2</version> <packaging>maven-plugin</packaging> <name>JMeter Graph and Tool Maven Plugin</name> <description>A maven plugin to include features from jmeter-plugins.org for JMeterPluginsCMD Command Line Tool to create graphs, export csv files from jmeter result files and Filter Result tool.</description> <url>https://github.com/vdaburon/jmeter-graph-tool-maven-plugin</url> <inceptionYear>2021</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>vdaburon</id> <name>Vincent DABURON</name> <roles> <role>Committer</role> </roles> </developer> <developer> <id>mlex</id> <name>Michael LEX</name> <roles> <role>Committer until september 2021 before the fork</role> </roles> </developer> </developers> <contributors> </contributors> <issueManagement> <system>jmeter-plugins-google-group</system> <url>https://groups.google.com/g/jmeter-plugins</url> </issueManagement> <scm> <connection>scm:git:git@github.com:vdaburon/jmeter-graph-tool-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:vdaburon/jmeter-graph-tool-maven-plugin.git</developerConnection> <url>https://github.com/vdaburon/jmeter-graph-tool-maven-plugin</url> <tag>HEAD</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jmeter.version>5.5</jmeter.version> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.twdata.maven</groupId> <artifactId>mojo-executor</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> </dependency> <!-- JMeter dependencies --> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter</artifactId> <version>${jmeter.version}</version> </dependency> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter_core</artifactId> <version>${jmeter.version}</version> </dependency> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter_config</artifactId> <version>${jmeter.version}</version> </dependency> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter_http</artifactId> <version>${jmeter.version}</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>cmdrunner</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-graphs-basic</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-graphs-additional</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-graphs-dist</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-graphs-vs</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-mergeresults</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-pde</artifactId> <version>0.1</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-cmn-jmeter</artifactId> <version>0.7</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-synthesis</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-filterresults</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-jmxmon</artifactId> <version>0.3</version> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-perfmon</artifactId> <version>2.1</version> </dependency> <!-- dbmon graph is not working, trouble with logs library <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-dbmon</artifactId> <version>0.1</version> </dependency> --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.4</version> <executions> <execution> <id>default-descriptor</id> <goals> <goal>descriptor</goal> </goals> <phase>process-classes</phase> </execution> <execution> <id>help-descriptor</id> <goals> <goal>helpmojo</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> </plugin> </plugins> </build> </project>