Skip to content

Commit a1d481d

Browse files
rabelendagithub-actions[bot]
authored andcommitted
[skip ci] Set release version
1 parent d6b48bd commit a1d481d

File tree

14 files changed

+26
-26
lines changed

14 files changed

+26
-26
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.1-SNAPSHOT</version>
20+
<version>1.1</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

docs/guide/README.md

Lines changed: 9 additions & 9 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.1-SNAPSHOT</version>
32+
<version>1.1</version>
3333
<scope>test</scope>
3434
</dependency>
3535
```
@@ -224,7 +224,7 @@ 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.1-SNAPSHOT</version>
227+
<version>1.1</version>
228228
<scope>test</scope>
229229
</dependency>
230230
```
@@ -299,7 +299,7 @@ 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.1-SNAPSHOT</version>
302+
<version>1.1</version>
303303
<scope>test</scope>
304304
</dependency>
305305
```
@@ -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.1-SNAPSHOT</version>
995+
<version>1.1</version>
996996
<scope>test</scope>
997997
</dependency>
998998
```
@@ -1109,7 +1109,7 @@ 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.1-SNAPSHOT</version>
1112+
<version>1.1</version>
11131113
<scope>test</scope>
11141114
</dependency>
11151115
```
@@ -1972,7 +1972,7 @@ To use it, add the following dependency to your project:
19721972
<dependency>
19731973
<groupId>us.abstracta.jmeter</groupId>
19741974
<artifactId>jmeter-java-dsl-parallel</artifactId>
1975-
<version>1.1-SNAPSHOT</version>
1975+
<version>1.1</version>
19761976
<scope>test</scope>
19771977
</dependency>
19781978
```
@@ -2590,7 +2590,7 @@ When you want to test a GraphQL service, having properly set each field in an HT
25902590
<dependency>
25912591
<groupId>us.abstracta.jmeter</groupId>
25922592
<artifactId>jmeter-java-dsl-graphql</artifactId>
2593-
<version>1.1-SNAPSHOT</version>
2593+
<version>1.1</version>
25942594
<scope>test</scope>
25952595
</dependency>
25962596
```
@@ -2683,7 +2683,7 @@ Including the following dependency in your project:
26832683
<dependency>
26842684
<groupId>us.abstracta.jmeter</groupId>
26852685
<artifactId>jmeter-java-dsl-jdbc</artifactId>
2686-
<version>1.1-SNAPSHOT</version>
2686+
<version>1.1</version>
26872687
<scope>test</scope>
26882688
</dependency>
26892689
```
@@ -2931,7 +2931,7 @@ Include the module on your project:
29312931
<dependency>
29322932
<groupId>us.abstracta.jmeter</groupId>
29332933
<artifactId>jmeter-java-dsl-wrapper</artifactId>
2934-
<version>1.1-SNAPSHOT</version>
2934+
<version>1.1</version>
29352935
<scope>test</scope>
29362936
</dependency>
29372937
```

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.1-SNAPSHOT</version>
23+
<version>1.1</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.1-SNAPSHOT</version>
10+
<version>1.1</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>jmeter-java-dsl-blazemeter</artifactId>
14-
<version>1.1-SNAPSHOT</version>
14+
<version>1.1</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.1-SNAPSHOT</version>
10+
<version>1.1</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.1-SNAPSHOT</version>
10+
<version>1.1</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.1-SNAPSHOT</version>
9+
<version>1.1</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.1-SNAPSHOT</version>
9+
<version>1.1</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>1.1-SNAPSHOT</version>
13+
<version>1.1</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>1.1-SNAPSHOT</version>
9+
<version>1.1</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>jmeter-java-dsl-octoperf</artifactId>
13-
<version>1.1-SNAPSHOT</version>
13+
<version>1.1</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)