Skip to content

Commit df89a21

Browse files
committed
#134 [root] Release 1.2.0
1 parent 6f7bfe0 commit df89a21

File tree

18 files changed

+29
-26
lines changed

18 files changed

+29
-26
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ The **requestor-javanet** impl is built with jdk8 and compatible with **Java 8+*
245245
<dependency>
246246
<groupId>io.reinert.requestor.impl</groupId>
247247
<artifactId>requestor-javanet</artifactId>
248-
<version>1.1.0</version>
248+
<version>1.2.0</version>
249249
</dependency>
250250
```
251251

@@ -260,7 +260,7 @@ The **requestor-gwt** impl is compatible with **GWT 2.7+** (Java 7+).
260260
<dependency>
261261
<groupId>io.reinert.requestor.impl</groupId>
262262
<artifactId>requestor-gwt</artifactId>
263-
<version>1.1.0</version>
263+
<version>1.2.0</version>
264264
</dependency>
265265
```
266266

@@ -283,7 +283,7 @@ Get involved and make Requestor better by entering our [community chat](#resourc
283283

284284
### Latest Release
285285

286-
1.1.0 (17 Jul 2022)
286+
1.2.0 (1 Oct 2022)
287287

288288

289289
## Request Options

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.reinert.requestor</groupId>
2323
<artifactId>requestor-project</artifactId>
24-
<version>1.2.0-SNAPSHOT</version>
24+
<version>1.2.0</version>
2525
</parent>
2626

2727
<packaging>pom</packaging>

examples/requestor-showcase/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.reinert.requestor.examples</groupId>
2323
<artifactId>requestor-examples-parent</artifactId>
24-
<version>1.2.0-SNAPSHOT</version>
24+
<version>1.2.0</version>
2525
</parent>
2626

2727
<artifactId>requestor-showcase</artifactId>

examples/requestor-showcase/src/main/java/io/reinert/requestor/examples/showcase/ui/GettingStarted.ui.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<br/>
3636
&#32;&#32;&lt;artifactId&gt;requestor-gwt&lt;/artifactId&gt;
3737
<br/>
38-
&#32;&#32;&lt;version&gt;1.1.0&lt;/version&gt;
38+
&#32;&#32;&lt;version&gt;1.2.0&lt;/version&gt;
3939
<br/>
4040
&lt;/dependency&gt;
4141
</code>

pom.xml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<groupId>io.reinert.requestor</groupId>
2929
<artifactId>requestor-project</artifactId>
30-
<version>1.2.0-SNAPSHOT</version>
30+
<version>1.2.0</version>
3131

3232
<name>Requestor</name>
3333
<description>Request like a boss.</description>
@@ -43,11 +43,11 @@
4343
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4444
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4545
<!-- Comment the lines below if using jdk8 -->
46-
<surefire.argLine>--add-opens java.base/java.net=ALL-UNNAMED</surefire.argLine>
47-
<gwt.extraJvmArgs>--add-opens java.base/java.lang=ALL-UNNAMED</gwt.extraJvmArgs>
46+
<!-- <surefire.argLine>&#45;&#45;add-opens java.base/java.net=ALL-UNNAMED</surefire.argLine>-->
47+
<!-- <gwt.extraJvmArgs>&#45;&#45;add-opens java.base/java.lang=ALL-UNNAMED</gwt.extraJvmArgs>-->
4848
<!-- Uncomment the lines below if using jdk8 -->
49-
<!--<surefire.argLine></surefire.argLine>-->
50-
<!--<gwt.extraJvmArgs></gwt.extraJvmArgs>-->
49+
<surefire.argLine></surefire.argLine>
50+
<gwt.extraJvmArgs></gwt.extraJvmArgs>
5151

5252
<!-- Plugins -->
5353
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
@@ -89,7 +89,7 @@
8989
<connection>scm:git:ssh://github.com/reinert/requestor.git</connection>
9090
<developerConnection>scm:git:ssh://git@github.com/reinert/requestor.git</developerConnection>
9191
<url>https://github.com/reinert/requestor</url>
92-
<tag>HEAD</tag>
92+
<tag>1.2.0</tag>
9393
</scm>
9494

9595
<issueManagement>
@@ -498,7 +498,7 @@
498498
</plugin>
499499
<plugin>
500500
<groupId>org.apache.maven.plugins</groupId>
501-
<artifactId>maven-gpg-plugin</artifactId>
501+
<artifactId>maven-gpg-plugin</artifactId>
502502
<version>${maven-gpg-plugin.version}</version>
503503
<executions>
504504
<execution>
@@ -507,6 +507,9 @@
507507
<goals>
508508
<goal>sign</goal>
509509
</goals>
510+
<configuration>
511+
<executable>gpg</executable>
512+
</configuration>
510513
</execution>
511514
</executions>
512515
</plugin>

requestor/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.reinert.requestor</groupId>
2323
<artifactId>requestor-parent</artifactId>
24-
<version>1.2.0-SNAPSHOT</version>
24+
<version>1.2.0</version>
2525
</parent>
2626

2727
<packaging>pom</packaging>

requestor/core/requestor-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>io.reinert.requestor.core</groupId>
2424
<artifactId>requestor-core-parent</artifactId>
25-
<version>1.2.0-SNAPSHOT</version>
25+
<version>1.2.0</version>
2626
</parent>
2727

2828
<artifactId>requestor-annotations</artifactId>

requestor/core/requestor-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>io.reinert.requestor.core</groupId>
2424
<artifactId>requestor-core-parent</artifactId>
25-
<version>1.2.0-SNAPSHOT</version>
25+
<version>1.2.0</version>
2626
</parent>
2727

2828
<artifactId>requestor-core</artifactId>

requestor/core/requestor-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>io.reinert.requestor.core</groupId>
2424
<artifactId>requestor-core-parent</artifactId>
25-
<version>1.2.0-SNAPSHOT</version>
25+
<version>1.2.0</version>
2626
</parent>
2727

2828
<artifactId>requestor-java</artifactId>

requestor/ext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.reinert.requestor</groupId>
2323
<artifactId>requestor-parent</artifactId>
24-
<version>1.2.0-SNAPSHOT</version>
24+
<version>1.2.0</version>
2525
</parent>
2626

2727
<packaging>pom</packaging>

0 commit comments

Comments
 (0)