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 6, 2023
1 parent 0dedaa4 commit 138c3a0
Show file tree
Hide file tree
Showing 31 changed files with 45 additions and 45 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.23</version>
<version>1.23.1</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.23 jmx2dsl test-plan.jmx
jbang us.abstracta.jmeter:jmeter-java-dsl-cli:1.23.1 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.23
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.23.1

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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.23.1'
```
:::
::::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.23.1'
```
:::
::::
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.23 recorder http://retailstore.test
jbang us.abstracta.jmeter:jmeter-java-dsl-cli:1.23.1 recorder http://retailstore.test
```
:::

Expand Down Expand Up @@ -52,7 +52,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.23
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.23.1

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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.23.1'
```
:::
::::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -26,7 +26,7 @@ repositories {
dependencies {
...
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-datadog:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-datadog:1.23.1'
}
```
:::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -24,7 +24,7 @@ repositories {
dependencies {
...
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.23.1'
}
```
:::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.23.1'
```
:::
::::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-azure:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-azure:1.23.1'
```
:::
::::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.23.1'
```
:::
::::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.23.1'
```
:::
::::
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation("us.abstracta.jmeter:jmeter-java-dsl:1.23") {
testImplementation("us.abstracta.jmeter:jmeter-java-dsl:1.23.1") {
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.23</version>
<version>1.23.1</version>
<scope>test</scope>
</dependency>
```
:::
::: code-group-item Gradle
```groovy
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.23'
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.23.1'
```
:::
::::
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.23</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</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.24-SNAPSHOT</version>
<version>1.23.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-parallel</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.24-SNAPSHOT</version>
<version>1.23.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-recorder</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.24-SNAPSHOT</version>
<version>1.23.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl-wrapper</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jmeter-java-dsl/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.24-SNAPSHOT</version>
<version>1.23.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jmeter-java-dsl</artifactId>
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.24-SNAPSHOT</version>
<version>1.23.1</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>1697723457</project.build.outputTimestamp>
<project.build.outputTimestamp>1699309057</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 138c3a0

Please sign in to comment.