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 Jun 14, 2024
1 parent 55148be commit 7d85e1d
Show file tree
Hide file tree
Showing 34 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/jmx2dsl.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ java -jar jmdsl.jar jmx2dsl test-plan.jmx

::: code-group-item Jbang
```bash
jbang us.abstracta.jmeter:jmeter-java-dsl-cli:1.28.1 jmx2dsl test-plan.jmx
jbang us.abstracta.jmeter:jmeter-java-dsl-cli:1.29 jmx2dsl test-plan.jmx
```
:::
::::
Expand All @@ -29,7 +29,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.1
//DEPS org.junit.platform:junit-platform-launcher:1.9.1
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.28.1
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.29

import static org.assertj.core.api.Assertions.assertThat;
import static us.abstracta.jmeter.javadsl.JmeterDsl.*;
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/protocols/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,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.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.29'
```
:::
::::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/protocols/jdbc.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Including the following dependency in your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-jdbc</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.29'
```
:::
::::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/recorder/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Here is a small demo using it:
You can use [jbang](https://www.jbang.dev/documentation/guide/latest/index.html) to easily execute the recorder with the latest version available. E.g.:

```bash
jbang us.abstracta.jmeter:jmeter-java-dsl-cli:1.28.1 recorder http://retailstore.test
jbang us.abstracta.jmeter:jmeter-java-dsl-cli:1.29 recorder http://retailstore.test
```
:::

Expand Down Expand Up @@ -58,7 +58,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.1
//DEPS org.junit.platform:junit-platform-launcher:1.9.1
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.28.1
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.29

import static org.assertj.core.api.Assertions.assertThat;
import static us.abstracta.jmeter.javadsl.JmeterDsl.*;
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/reporting/dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,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.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.29'
```
:::
::::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/reporting/real-time/datadog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To use the module, just include the dependency:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-datadog</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -26,7 +26,7 @@ repositories {
dependencies {
...
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-datadog:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-datadog:1.29'
}
```
:::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/reporting/real-time/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -24,7 +24,7 @@ repositories {
dependencies {
...
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.29'
}
```
:::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/reporting/real-time/prometheus.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ 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-prometheus</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-prometheus:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-prometheus:1.29'
```
:::
::::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/request-generation/parallel-controller.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,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.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.29'
```
:::
::::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/scale/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ To use [Azure Load Testing](https://azure.microsoft.com/en-us/products/load-test
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-azure</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-azure:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-azure:1.29'
```
:::
::::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/scale/blazemeter.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ By including the following module as a dependency:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.29'
```
:::
::::
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/scale/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.28</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/scale/octoperf.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,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.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.29'
```
:::
::::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ To use the DSL just include it in your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation("us.abstracta.jmeter:jmeter-java-dsl:1.28.1") {
testImplementation("us.abstracta.jmeter:jmeter-java-dsl:1.29") {
exclude("org.apache.jmeter", "bom")
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/wrapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ Include the module on your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl-wrapper</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.28.1'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.29'
```
:::
::::
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add dependency to your project:
<dependency>
<groupId>us.abstracta.jmeter</groupId>
<artifactId>jmeter-java-dsl</artifactId>
<version>1.28.1</version>
<version>1.29</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-azure/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-azure</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-base-remote-engine/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-base-remote-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-blazemeter/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>jmeter-java-dsl-parent</artifactId>
<groupId>us.abstracta.jmeter</groupId>
<version>1.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-bridge</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-cli/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-cli</artifactId>
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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-dashboard</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-datadog/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-datadog</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.29-SNAPSHOT</version>
<version>1.29</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.29-SNAPSHOT</version>
<version>1.29</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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-octoperf/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-octoperf</artifactId>
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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-parallel</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-prometheus/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-prometheus</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl-recorder/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.29-SNAPSHOT</version>
<version>1.29</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-recorder</artifactId>
Expand Down
Loading

0 comments on commit 7d85e1d

Please sign in to comment.