Skip to content

Commit dd31760

Browse files
rabelendagithub-actions[bot]
authored andcommitted
[skip ci] Set release version
1 parent 3d043a5 commit dd31760

File tree

15 files changed

+38
-38
lines changed

15 files changed

+38
-38
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you use [maven](https://maven.apache.org/what-is-maven.html), just include th
1717
<dependency>
1818
<groupId>us.abstracta.jmeter</groupId>
1919
<artifactId>jmeter-java-dsl</artifactId>
20-
<version>1.3</version>
20+
<version>1.4</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

docs/guide/README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To use the DSL just include it in your project:
2929
<dependency>
3030
<groupId>us.abstracta.jmeter</groupId>
3131
<artifactId>jmeter-java-dsl</artifactId>
32-
<version>1.3</version>
32+
<version>1.4</version>
3333
<scope>test</scope>
3434
</dependency>
3535
```
@@ -50,7 +50,7 @@ class JmeterRule implements ComponentMetadataRule {
5050
5151
dependencies {
5252
...
53-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl:1.3'
53+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl:1.4'
5454
components {
5555
withModule("org.apache.jmeter:ApacheJMeter_core", JmeterRule)
5656
withModule("org.apache.jmeter:ApacheJMeter_java", JmeterRule)
@@ -137,7 +137,7 @@ java -jar jmx2dsl.jar test-plan.jmx
137137
:::
138138
::: tab Jbang
139139
```bash
140-
jbang us.abstracta.jmeter:jmeter-java-dsl-jmx2dsl:1.3 test-plan.jmx
140+
jbang us.abstracta.jmeter:jmeter-java-dsl-jmx2dsl:1.4 test-plan.jmx
141141
```
142142
:::
143143
::::
@@ -153,7 +153,7 @@ executable (eg: chmod +x ./PerformanceTest.java) and just executing it with ./Pe
153153
//DEPS org.assertj:assertj-core:3.23.1
154154
//DEPS org.junit.jupiter:junit-jupiter-engine:5.9.1
155155
//DEPS org.junit.platform:junit-platform-launcher:1.9.1
156-
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.3
156+
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.4
157157

158158
import static org.assertj.core.api.Assertions.assertThat;
159159
import static us.abstracta.jmeter.javadsl.JmeterDsl.*;
@@ -228,14 +228,14 @@ By including the following module as a dependency:
228228
<dependency>
229229
<groupId>us.abstracta.jmeter</groupId>
230230
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
231-
<version>1.3</version>
231+
<version>1.4</version>
232232
<scope>test</scope>
233233
</dependency>
234234
```
235235
:::
236236
::: tab Gradle
237237
```groovy
238-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.3'
238+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.4'
239239
```
240240
:::
241241
::::
@@ -303,14 +303,14 @@ In the same fashion as with BlazeMeter, just by including the following module a
303303
<dependency>
304304
<groupId>us.abstracta.jmeter</groupId>
305305
<artifactId>jmeter-java-dsl-octoperf</artifactId>
306-
<version>1.3</version>
306+
<version>1.4</version>
307307
<scope>test</scope>
308308
</dependency>
309309
```
310310
:::
311311
::: tab Gradle
312312
```groovy
313-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.3'
313+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.4'
314314
```
315315
:::
316316
::::
@@ -1015,7 +1015,7 @@ To use the module, you will need to include the following dependency in your pro
10151015
<dependency>
10161016
<groupId>us.abstracta.jmeter</groupId>
10171017
<artifactId>jmeter-java-dsl-elasticsearch-listener</artifactId>
1018-
<version>1.3</version>
1018+
<version>1.4</version>
10191019
<scope>test</scope>
10201020
</dependency>
10211021
```
@@ -1028,7 +1028,7 @@ maven { url 'https://jitpack.io' }
10281028

10291029
And the dependency:
10301030
```groovy
1031-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.3'
1031+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.4'
10321032
```
10331033

10341034
:::
@@ -1132,14 +1132,14 @@ To use it, you need to add the following dependency:
11321132
<dependency>
11331133
<groupId>us.abstracta.jmeter</groupId>
11341134
<artifactId>jmeter-java-dsl-dashboard</artifactId>
1135-
<version>1.3</version>
1135+
<version>1.4</version>
11361136
<scope>test</scope>
11371137
</dependency>
11381138
```
11391139
:::
11401140
::: tab Gradle
11411141
```groovy
1142-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.3'
1142+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.4'
11431143
```
11441144
:::
11451145
::::
@@ -1995,14 +1995,14 @@ To use it, add the following dependency to your project:
19951995
<dependency>
19961996
<groupId>us.abstracta.jmeter</groupId>
19971997
<artifactId>jmeter-java-dsl-parallel</artifactId>
1998-
<version>1.3</version>
1998+
<version>1.4</version>
19991999
<scope>test</scope>
20002000
</dependency>
20012001
```
20022002
:::
20032003
::: tab Gradle
20042004
```groovy
2005-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.3'
2005+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.4'
20062006
```
20072007
:::
20082008
::::
@@ -2636,14 +2636,14 @@ When you want to test a GraphQL service, having properly set each field in an HT
26362636
<dependency>
26372637
<groupId>us.abstracta.jmeter</groupId>
26382638
<artifactId>jmeter-java-dsl-graphql</artifactId>
2639-
<version>1.3</version>
2639+
<version>1.4</version>
26402640
<scope>test</scope>
26412641
</dependency>
26422642
```
26432643
:::
26442644
::: tab Gradle
26452645
```groovy
2646-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.3'
2646+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.4'
26472647
```
26482648
:::
26492649
::::
@@ -2729,14 +2729,14 @@ Including the following dependency in your project:
27292729
<dependency>
27302730
<groupId>us.abstracta.jmeter</groupId>
27312731
<artifactId>jmeter-java-dsl-jdbc</artifactId>
2732-
<version>1.3</version>
2732+
<version>1.4</version>
27332733
<scope>test</scope>
27342734
</dependency>
27352735
```
27362736
:::
27372737
::: tab Gradle
27382738
```groovy
2739-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.3'
2739+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.4'
27402740
```
27412741
:::
27422742
::::
@@ -2977,14 +2977,14 @@ Include the module on your project:
29772977
<dependency>
29782978
<groupId>us.abstracta.jmeter</groupId>
29792979
<artifactId>jmeter-java-dsl-wrapper</artifactId>
2980-
<version>1.3</version>
2980+
<version>1.4</version>
29812981
<scope>test</scope>
29822982
</dependency>
29832983
```
29842984
:::
29852985
::: tab Gradle
29862986
```groovy
2987-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.3'
2987+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.4'
29882988
```
29892989
:::
29902990
::::

docs/guide/distributed/test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>us.abstracta.jmeter</groupId>
3636
<artifactId>jmeter-java-dsl</artifactId>
37-
<version>1.3</version>
37+
<version>1.4</version>
3838
<scope>test</scope>
3939
</dependency>
4040
<dependency>

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add dependency to your project:
2020
<dependency>
2121
<groupId>us.abstracta.jmeter</groupId>
2222
<artifactId>jmeter-java-dsl</artifactId>
23-
<version>1.3</version>
23+
<version>1.4</version>
2424
<scope>test</scope>
2525
</dependency>
2626
```

jmeter-java-dsl-blazemeter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>us.abstracta.jmeter</groupId>
99
<artifactId>jmeter-java-dsl-parent</artifactId>
10-
<version>1.4-SNAPSHOT</version>
10+
<version>1.4</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
14-
<version>1.4-SNAPSHOT</version>
14+
<version>1.4</version>
1515

1616
<name>${project.artifactId}</name>
1717
<description>Module which allows to easily run jmeter-java-dsl test plans at scale in

jmeter-java-dsl-dashboard/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.abstracta.jmeter</groupId>
99
<artifactId>jmeter-java-dsl-parent</artifactId>
10-
<version>1.4-SNAPSHOT</version>
10+
<version>1.4</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>jmeter-java-dsl-dashboard</artifactId>

jmeter-java-dsl-elasticsearch-listener/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.abstracta.jmeter</groupId>
99
<artifactId>jmeter-java-dsl-parent</artifactId>
10-
<version>1.4-SNAPSHOT</version>
10+
<version>1.4</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>jmeter-java-dsl-elasticsearch-listener</artifactId>

jmeter-java-dsl-graphql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>jmeter-java-dsl-parent</artifactId>
88
<groupId>us.abstracta.jmeter</groupId>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

jmeter-java-dsl-jdbc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>jmeter-java-dsl-parent</artifactId>
88
<groupId>us.abstracta.jmeter</groupId>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

jmeter-java-dsl-jmx2dsl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>jmeter-java-dsl-parent</artifactId>
88
<groupId>us.abstracta.jmeter</groupId>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>jmeter-java-dsl-jmx2dsl</artifactId>

0 commit comments

Comments
 (0)