Skip to content

Commit c80c725

Browse files
rabelendagithub-actions[bot]
authored andcommitted
[skip ci] Set release version
1 parent 60e4f07 commit c80c725

File tree

14 files changed

+37
-37
lines changed

14 files changed

+37
-37
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you use [maven](https://maven.apache.org/what-is-maven.html), just include th
1414
<dependency>
1515
<groupId>us.abstracta.jmeter</groupId>
1616
<artifactId>jmeter-java-dsl</artifactId>
17-
<version>1.0.1</version>
17+
<version>1.0.2</version>
1818
<scope>test</scope>
1919
</dependency>
2020
```

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.0.1</version>
32+
<version>1.0.2</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.0.1'
53+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl:1.0.2'
5454
components {
5555
withModule("org.apache.jmeter:ApacheJMeter_core", JmeterRule)
5656
withModule("org.apache.jmeter:ApacheJMeter_java", JmeterRule)
@@ -133,7 +133,7 @@ java -jar jmx2dsl.jar test-plan.jmx
133133
:::
134134
::: tab Jbang
135135
```bash
136-
jbang us.abstracta.jmeter:jmeter-java-dsl-jmx2dsl:1.0.1 test-plan.jmx
136+
jbang us.abstracta.jmeter:jmeter-java-dsl-jmx2dsl:1.0.2 test-plan.jmx
137137
```
138138
:::
139139
::::
@@ -149,7 +149,7 @@ executable (eg: chmod +x ./PerformanceTest.java) and just executing it with ./Pe
149149
//DEPS org.assertj:assertj-core:3.23.1
150150
//DEPS org.junit.jupiter:junit-jupiter-engine:5.9.0
151151
//DEPS org.junit.platform:junit-platform-launcher:1.9.0
152-
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.0.1
152+
//DEPS us.abstracta.jmeter:jmeter-java-dsl:1.0.2
153153

154154
import static org.assertj.core.api.Assertions.assertThat;
155155
import static us.abstracta.jmeter.javadsl.JmeterDsl.*;
@@ -224,14 +224,14 @@ By including the following module as a dependency:
224224
<dependency>
225225
<groupId>us.abstracta.jmeter</groupId>
226226
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
227-
<version>1.0.1</version>
227+
<version>1.0.2</version>
228228
<scope>test</scope>
229229
</dependency>
230230
```
231231
:::
232232
::: tab Gradle
233233
```groovy
234-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.0.1'
234+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-blazemeter:1.0.2'
235235
```
236236
:::
237237
::::
@@ -299,14 +299,14 @@ In the same fashion as with BlazeMeter, just by including the following module a
299299
<dependency>
300300
<groupId>us.abstracta.jmeter</groupId>
301301
<artifactId>jmeter-java-dsl-octoperf</artifactId>
302-
<version>1.0.1</version>
302+
<version>1.0.2</version>
303303
<scope>test</scope>
304304
</dependency>
305305
```
306306
:::
307307
::: tab Gradle
308308
```groovy
309-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.0.1'
309+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-octoperf:1.0.2'
310310
```
311311
:::
312312
::::
@@ -992,7 +992,7 @@ To use the module, you will need to include the following dependency in your pro
992992
<dependency>
993993
<groupId>us.abstracta.jmeter</groupId>
994994
<artifactId>jmeter-java-dsl-elasticsearch-listener</artifactId>
995-
<version>1.0.1</version>
995+
<version>1.0.2</version>
996996
<scope>test</scope>
997997
</dependency>
998998
```
@@ -1005,7 +1005,7 @@ maven { url 'https://jitpack.io' }
10051005

10061006
And the dependency:
10071007
```groovy
1008-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.0.1'
1008+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-elasticsearch-listener:1.0.2'
10091009
```
10101010

10111011
:::
@@ -1109,14 +1109,14 @@ To use it, you need to add the following dependency:
11091109
<dependency>
11101110
<groupId>us.abstracta.jmeter</groupId>
11111111
<artifactId>jmeter-java-dsl-dashboard</artifactId>
1112-
<version>1.0.1</version>
1112+
<version>1.0.2</version>
11131113
<scope>test</scope>
11141114
</dependency>
11151115
```
11161116
:::
11171117
::: tab Gradle
11181118
```groovy
1119-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.0.1'
1119+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.0.2'
11201120
```
11211121
:::
11221122
::::
@@ -1934,14 +1934,14 @@ To use it, add the following dependency to your project:
19341934
<dependency>
19351935
<groupId>us.abstracta.jmeter</groupId>
19361936
<artifactId>jmeter-java-dsl-parallel</artifactId>
1937-
<version>1.0.1</version>
1937+
<version>1.0.2</version>
19381938
<scope>test</scope>
19391939
</dependency>
19401940
```
19411941
:::
19421942
::: tab Gradle
19431943
```groovy
1944-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.0.1'
1944+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-dashboard:1.0.2'
19451945
```
19461946
:::
19471947
::::
@@ -2552,14 +2552,14 @@ When you want to test a GraphQL service, having properly set each field in an HT
25522552
<dependency>
25532553
<groupId>us.abstracta.jmeter</groupId>
25542554
<artifactId>jmeter-java-dsl-graphql</artifactId>
2555-
<version>1.0.1</version>
2555+
<version>1.0.2</version>
25562556
<scope>test</scope>
25572557
</dependency>
25582558
```
25592559
:::
25602560
::: tab Gradle
25612561
```groovy
2562-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.0.1'
2562+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-graphql:1.0.2'
25632563
```
25642564
:::
25652565
::::
@@ -2645,14 +2645,14 @@ Including the following dependency in your project:
26452645
<dependency>
26462646
<groupId>us.abstracta.jmeter</groupId>
26472647
<artifactId>jmeter-java-dsl-jdbc</artifactId>
2648-
<version>1.0.1</version>
2648+
<version>1.0.2</version>
26492649
<scope>test</scope>
26502650
</dependency>
26512651
```
26522652
:::
26532653
::: tab Gradle
26542654
```groovy
2655-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.0.1'
2655+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-jdbc:1.0.2'
26562656
```
26572657
:::
26582658
::::
@@ -2893,14 +2893,14 @@ Include the module on your project:
28932893
<dependency>
28942894
<groupId>us.abstracta.jmeter</groupId>
28952895
<artifactId>jmeter-java-dsl-wrapper</artifactId>
2896-
<version>1.0.1</version>
2896+
<version>1.0.2</version>
28972897
<scope>test</scope>
28982898
</dependency>
28992899
```
29002900
:::
29012901
::: tab Gradle
29022902
```groovy
2903-
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.0.1'
2903+
testImplementation 'us.abstracta.jmeter:jmeter-java-dsl-wrapper:1.0.2'
29042904
```
29052905
:::
29062906
::::

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.0.1</version>
23+
<version>1.0.2</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>0.1-SNAPSHOT</version>
10+
<version>1.0.2</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
14-
<version>0.1-SNAPSHOT</version>
14+
<version>1.0.2</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>0.1-SNAPSHOT</version>
10+
<version>1.0.2</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>0.1-SNAPSHOT</version>
10+
<version>1.0.2</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>0.1-SNAPSHOT</version>
9+
<version>1.0.2</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>0.1-SNAPSHOT</version>
9+
<version>1.0.2</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
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>jmeter-java-dsl-parent</artifactId>
1212
<groupId>us.abstracta.jmeter</groupId>
13-
<version>0.1-SNAPSHOT</version>
13+
<version>1.0.2</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616
<artifactId>jmeter-java-dsl-jmx2dsl</artifactId>

jmeter-java-dsl-octoperf/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>us.abstracta.jmeter</groupId>
88
<artifactId>jmeter-java-dsl-parent</artifactId>
9-
<version>0.1-SNAPSHOT</version>
9+
<version>1.0.2</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>jmeter-java-dsl-octoperf</artifactId>
13-
<version>0.1-SNAPSHOT</version>
13+
<version>1.0.2</version>
1414

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

0 commit comments

Comments
 (0)