Skip to content
This repository was archived by the owner on Nov 7, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3336188
Added multiple file pattern
jkirchberg Jan 21, 2014
6a9b52d
pom and mojo extended to support CSV targets
cboris Mar 10, 2014
47ea2fa
(feature) add several new options - granulation, prevent-outlines and…
May 6, 2014
54c5bbd
(enhancement) add skip option
May 6, 2014
a58df87
added includeLabels and excludeLabels graph properties
Jun 13, 2014
dea6699
support includeLabels, excludeLabels tags
Jul 30, 2014
f5255b9
(feature) add weight of line
Oct 14, 2014
28e0fdc
(cosmetic) increase version of JMeter plugins up to 1.2.0
Oct 14, 2014
797c6c3
add relativeTimes tag to graph block
Apr 25, 2015
6b6385b
Remove log file as command-line argument
Oct 6, 2015
5bc5f4e
Remove comment
Oct 6, 2015
c92922c
add default width = 800, height = 600
Dec 21, 2015
59d8013
(cosmetic) fix typo
Jan 19, 2016
9d653ec
Fixed conflicts
Jan 19, 2016
1a548b6
merge pull request to Remove Dlog_file
Jan 19, 2016
7531e7a
seems like jmeter dependencies are not wanted here
srdkr Jan 20, 2016
d177df4
(merge) merge community improvements
Jan 22, 2016
b2e501a
(cosmetic) add contributor list into pom.xml
Jan 22, 2016
3f61d80
(merge) merge pull request #1 from srdkr
Jan 22, 2016
a48b8e0
(cosmetic) correct list of contributor - final commit to fix branch
Jan 22, 2016
c6b6aea
(build) change groupId and add travis
Jan 22, 2016
0f41a75
(build-fix) move gpg to separate profile to fix travis
Jan 22, 2016
4bbc527
(build-fix) correct structure of profiles and add configuration for r…
Jan 22, 2016
bf8d796
(build) add codecov
Jan 22, 2016
91e8b6f
(build-fix) fix travis
Jan 22, 2016
74716a6
(docs) update README.md according to change of groupId
Jan 22, 2016
0562cb7
(pom.xml) remove project name from group ID and correct URIs
Jan 23, 2016
d648cbf
(pom.xml) update version of maven-gpg-plugin to 1.6
Jan 23, 2016
8f0f0be
(pom.xml) prepare for next version 0.1.2
Jan 23, 2016
4fc89f3
(docs) correct link to maven central
Jan 23, 2016
14418f9
(pom.xml) remove groupId and correct typo of CI URL
Jan 25, 2016
efb84e3
Add other JMeterPlugins parameters
aaitmouloud Jan 13, 2017
e8bda37
Merge pull request #2 from aaitmouloud/master
mizhka Jan 14, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
.idea
*.iml
target
target
/bin
/.classpath
/.project
/.settings/org.eclipse.core.resources.prefs
/.settings/org.eclipse.jdt.core.prefs
/.settings/org.eclipse.m2e.core.prefs
/mvn.log
/.settings/
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: java

jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![Build Status](https://api.travis-ci.org/Cka3o4Huk/jmeter-graph-maven-plugin.svg?branch=master)](https://travis-ci.org/Cka3o4Huk/jmeter-graph-maven-plugin)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.Cka3o4Huk/jmeter-graph-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.Cka3o4Huk/jmeter-graph-maven-plugin)

jmeter-graph-maven-plugin
=========================

Expand All @@ -18,9 +21,9 @@ Just include the plugin in your `pom.xml` and execute `mvn jmeter-graph:create-g
<build>
<plugins>
<plugin>
<groupId>de.codecentric</groupId>
<groupId>com.github.Cka3o4Huk.jmeter-graph-plugin</groupId>
<artifactId>jmeter-graph-maven-plugin</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
<configuration>
<inputFile>${project.build.directory}/jmeter/results/SimpleWebservicePerformanceTest.jtl</inputFile>
<graphs>
Expand Down
148 changes: 98 additions & 50 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,16 @@
<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>

<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
</parent>

<groupId>de.codecentric</groupId>
<groupId>com.github.Cka3o4Huk</groupId>
<artifactId>jmeter-graph-maven-plugin</artifactId>
<version>0.1.1-SNAPSHOT</version>
<version>0.1.2-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>JMeter Graphs Maven Plugin</name>
<description>
A plugin to include the functionality of JMeterPluginsCMD Command Line Tool
to create nice graphs from jmeter result files.
</description>
<url>https://github.com/codecentric/jmeter-graph-maven-plugin</url>

<url>https://github.com/Cka3o4Huk/jmeter-graph-maven-plugin</url>
<licenses>
<license>
<name>MIT</name>
Expand All @@ -32,33 +25,57 @@
<id>mlex</id>
<name>Michael Lex</name>
<roles>
<role>Comitter</role>
<role>Committer</role>
</roles>
</developer>
<developer>
<id>Cka3o4Huk</id>
<name>Michael Zhilin</name>
<roles>
<role>Committer</role>
</roles>
</developer>
</developers>

<contributors>
<contributor>
<name>jkirchberg</name>
</contributor>
<contributor>
<name>Boris Petrovic</name>
</contributor>
<contributor>
<name>Marcelo Gore</name>
</contributor>
<contributor>
<name>Paul Steinbach</name>
</contributor>
<contributor>
<name>Philip Taferner</name>
</contributor>
<contributor>
<name>srdkr</name>
</contributor>
</contributors>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/codecentric/jmeter-graph-maven-plugin/issues</url>
<url>https://github.com/Cka3o4Huk/jmeter-graph-maven-plugin/issues</url>
</issueManagement>

<!--

<ciManagement>
<system>Travis-CI</system>
<url>http://travis-ci.com/codecentric/jmeter-graph-maven-plugin</url>
<url>http://travis-ci.org/Cka3o4Huk/jmeter-graph-maven-plugin</url>
</ciManagement>
-->

<mailingLists>
</mailingLists>

<scm>
<connection>scm:git:[email protected]:codecentric/jmeter-graph-maven-plugin.git</connection>
<developerConnection>scm:git:[email protected]:codecentric/jmeter-graph-maven-plugin.git</developerConnection>
<url>https://github.com/codecentric/jmeter-graph-maven-plugin</url>
<connection>scm:git:[email protected]:Cka3o4Huk/jmeter-graph-maven-plugin.git</connection>
<developerConnection>scm:git:[email protected]:Cka3o4Huk/jmeter-graph-maven-plugin.git</developerConnection>
<url>https://github.com/Cka3o4Huk/jmeter-graph-maven-plugin</url>
<tag>HEAD</tag>
</scm>

Expand All @@ -75,8 +92,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmeter.version>2.10</jmeter.version>
<jmeter.plugins.version>1.0.0</jmeter.plugins.version>
<jmeter.version>2.13</jmeter.version>
<jmeter.plugins.version>1.3.1</jmeter.plugins.version>
</properties>

<dependencies>
Expand All @@ -103,26 +120,35 @@
<artifactId>mojo-executor</artifactId>
<version>2.1.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>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>4.0.3.RELEASE</version>
</dependency>

<dependency>
<groupId>org.apache.jmeter</groupId>
<artifactId>ApacheJMeter_config</artifactId>
<version>${jmeter.version}</version>
<groupId>kg.apc</groupId>
<artifactId>jmeter-plugins-standard</artifactId>
<version>${jmeter.plugins.version}</version>
<exclusions>
<!-- Those are not available in mvncentral -->
<exclusion>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
</exclusion>
<exclusion>
<groupId>kg.apc</groupId>
<artifactId>perfmon</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>kg.apc</groupId>
<artifactId>jmeter-plugins</artifactId>
<artifactId>jmeter-plugins-extras</artifactId>
<version>${jmeter.plugins.version}</version>
<exclusions>
<!-- Those are not available in mvncentral -->
Expand All @@ -141,6 +167,30 @@
</exclusions>
</dependency>
</dependencies>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
Expand Down Expand Up @@ -179,20 +229,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
Expand All @@ -217,7 +253,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<version>2.5.1</version><!--$NO-MVN-MAN-VER$-->
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<releaseProfiles>release-artifacts,release</releaseProfiles>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Expand Down
Loading