Skip to content

Commit

Permalink
[skip ci] Set release version
Browse files Browse the repository at this point in the history
  • Loading branch information
rabelenda authored and github-actions[bot] committed Nov 18, 2022
1 parent a6fc7a9 commit af813fa
Show file tree
Hide file tree
Showing 15 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ If you use [maven](https://maven.apache.org/what-is-maven.html), just include th
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
Expand Down
40 changes: 20 additions & 20 deletions docs/guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To use the DSL just include it in your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -50,7 +50,7 @@ class JmeterRule implements ComponentMetadataRule {
dependencies {
...
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl:1.3'
components {
withModule("org.apache.jmeter:ApacheJMeter_core", JmeterRule)
withModule("org.apache.jmeter:ApacheJMeter_java", JmeterRule)
Expand Down Expand Up @@ -133,7 +133,7 @@ java -jar jmx2dsl.jar test-plan.jmx
:::
::: tab Jbang
```bash
jbang us.abstracta.jmeter:jmeter-java-dsl-jmx2dsl:1.2 test-plan.jmx
jbang us.abstracta.jmeter:jmeter-java-dsl-jmx2dsl:1.3 test-plan.jmx
```
:::
::::
Expand All @@ -149,7 +149,7 @@ executable (eg: chmod +x ./PerformanceTest.java) and just executing it with ./Pe
//DEPS org.assertj:assertj-core:3.23.1
//DEPS org.junit.jupiter:junit-jupiter-engine:5.9.0
//DEPS org.junit.platform:junit-platform-launcher:1.9.0
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.2
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.3

import static org.assertj.core.api.Assertions.assertThat;
import static us.abstracta.jmeter.javadsl.JmeterDsl.*;
Expand Down Expand Up @@ -224,14 +224,14 @@ By including the following module as a dependency:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
:::
::: tab Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.3'
```
:::
::::
Expand Down Expand Up @@ -299,14 +299,14 @@ In the same fashion as with BlazeMeter, just by including the following module a
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-octoperf</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
:::
::: tab Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.3'
```
:::
::::
Expand Down Expand Up @@ -992,7 +992,7 @@ To use the module, you will need to include the following dependency in your pro
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-elasticsearch-listener</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -1005,7 +1005,7 @@ maven { url 'https://jitpack.io' }

And the dependency:
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.3'
```

:::
Expand Down Expand Up @@ -1109,14 +1109,14 @@ To use it, you need to add the following dependency:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-dashboard</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
:::
::: tab Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.3'
```
:::
::::
Expand Down Expand Up @@ -1972,14 +1972,14 @@ To use it, add the following dependency to your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parallel</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
:::
::: tab Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.3'
```
:::
::::
Expand Down Expand Up @@ -2594,14 +2594,14 @@ When you want to test a GraphQL service, having properly set each field in an HT
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-graphql</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
:::
::: tab Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.3'
```
:::
::::
Expand Down Expand Up @@ -2687,14 +2687,14 @@ Including the following dependency in your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-jdbc</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
:::
::: tab Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.3'
```
:::
::::
Expand Down Expand Up @@ -2935,14 +2935,14 @@ Include the module on your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-wrapper</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
:::
::: tab Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.2'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.3'
```
:::
::::
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/distributed/test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add dependency to your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl</artifactId>
<version>1.2</version>
<version>1.3</version>
<scope>test</scope>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions jmeter-java-dsl-blazemeter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parent</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>

<name>${project.artifactId}</name>
<description>Module which allows to easily run jmeter-java-dsl test plans at scale in
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-dashboard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parent</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-dashboard</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-elasticsearch-listener/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parent</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-elasticsearch-listener</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-graphql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>jmeter-java-dsl-parent</artifactId>
<groupId>us.abstracta.jmeter</groupId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>jmeter-java-dsl-parent</artifactId>
<groupId>us.abstracta.jmeter</groupId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-jmx2dsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>jmeter-java-dsl-parent</artifactId>
<groupId>us.abstracta.jmeter</groupId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-jmx2dsl</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions jmeter-java-dsl-octoperf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parent</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-octoperf</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>

<name>${project.artifactId}</name>
<description>Module which allows to easily run jmeter-java-dsl test plans at scale in OctoPerf.
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-parallel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parent</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-parallel</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>jmeter-java-dsl-parent</artifactId>
<groupId>us.abstracta.jmeter</groupId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-wrapper</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions jmeter-java-dsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parent</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>

<name>${project.artifactId}</name>
<description>Simple API to run JMeter performance tests in an VCS and programmers friendly way.
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-parent</artifactId>
<packaging>pom</packaging>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>

<name>${project.artifactId}</name>
<description>Parent project for all jmeter-java-dsl modules</description>
Expand Down Expand Up @@ -45,7 +45,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.outputTimestamp>1668541991</project.build.outputTimestamp>
<project.build.outputTimestamp>1668795985</project.build.outputTimestamp>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<jmeter.version>5.5</jmeter.version>
Expand Down

0 comments on commit af813fa

Please sign in to comment.