Skip to content

Commit

Permalink
#158 [root] Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reinert committed May 3, 2024
1 parent 42d9012 commit f158076
Show file tree
Hide file tree
Showing 19 changed files with 37 additions and 27 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ The **requestor-javanet** impl is built with jdk8 and compatible with **Java 8+*
<dependency>
<groupId>io.reinert.requestor.impl</groupId>
<artifactId>requestor-javanet</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
```

Expand All @@ -289,7 +289,7 @@ Add `requestor-kotlin` dependency to the project:
<dependency>
<groupId>io.reinert.requestor.ext</groupId>
<artifactId>requestor-kotlin</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
```

Expand Down Expand Up @@ -324,7 +324,7 @@ The **requestor-gwt** impl is compatible with **GWT 2.7+** (Java 7+).
<dependency>
<groupId>io.reinert.requestor.impl</groupId>
<artifactId>requestor-gwt</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
```

Expand All @@ -341,7 +341,7 @@ If you would like to get involded and make Requestor better, get in touch in our

### Latest Release

1.3.0 (4 Apr 2023)
1.4.0 (2 May 2024)


## Request Options
Expand Down Expand Up @@ -2986,7 +2986,7 @@ A place to interact with the projects users and contributors. Get quick answers


## Snapshot installation
If you want to use the latest snapshot, you need to add the sonatype snapshot repository to your POM and set the dependency version to `1.4.0-SNAPSHOT`.
If you want to use the latest snapshot, you need to add the sonatype snapshot repository to your POM and set the dependency version to `1.5.0-SNAPSHOT`.

```xml
<repositories>
Expand All @@ -3006,15 +3006,15 @@ If you want to use the latest snapshot, you need to add the sonatype snapshot re
<dependency>
<groupId>io.reinert.requestor.impl</groupId>
<artifactId>requestor-javanet</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</dependency>
...
</dependencies>
```


### Latest Snapshot
1.4.0-SNAPSHOT
1.5.0-SNAPSHOT


## License
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.reinert.requestor</groupId>
<artifactId>requestor-project</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion examples/requestor-showcase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.reinert.requestor.examples</groupId>
<artifactId>requestor-examples-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-showcase</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>io.reinert.requestor</groupId>
<artifactId>requestor-project</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>

<name>Requestor</name>
<description>Request like a boss.</description>
Expand Down Expand Up @@ -93,7 +93,7 @@
<connection>scm:git:ssh://github.com/reinert/requestor.git</connection>
<developerConnection>scm:git:ssh://git@github.com/reinert/requestor.git</developerConnection>
<url>https://github.com/reinert/requestor</url>
<tag>HEAD</tag>
<tag>1.4.0</tag>
</scm>

<issueManagement>
Expand Down Expand Up @@ -278,7 +278,7 @@
</configuration>
<executions>
<execution>
<phase>pre-site</phase>
<phase>install</phase>
<goals>
<goal>javadoc</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion requestor/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.reinert.requestor</groupId>
<artifactId>requestor-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion requestor/core/requestor-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.core</groupId>
<artifactId>requestor-core-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/core/requestor-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.core</groupId>
<artifactId>requestor-core-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/core/requestor-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.core</groupId>
<artifactId>requestor-core-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-java</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.reinert.requestor</groupId>
<artifactId>requestor-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion requestor/ext/requestor-autobean/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.ext</groupId>
<artifactId>requestor-ext-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-autobean</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/ext/requestor-gson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.ext</groupId>
<artifactId>requestor-ext-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-gson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/ext/requestor-gwtjackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.ext</groupId>
<artifactId>requestor-ext-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-gwtjackson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/ext/requestor-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.ext</groupId>
<artifactId>requestor-ext-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-kotlin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/ext/requestor-oauth2gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.ext</groupId>
<artifactId>requestor-ext-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-oauth2gwt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/ext/requestor-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<parent>
<groupId>io.reinert.requestor.ext</groupId>
<artifactId>requestor-ext-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-vertx</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion requestor/impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.reinert.requestor</groupId>
<artifactId>requestor-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<packaging>pom</packaging>
Expand Down
5 changes: 4 additions & 1 deletion requestor/impl/requestor-gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.impl</groupId>
<artifactId>requestor-impl-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-gwt</artifactId>
Expand Down Expand Up @@ -76,6 +76,9 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
<executions>
<execution>
<id>test-dev-mode</id>
Expand Down
9 changes: 8 additions & 1 deletion requestor/impl/requestor-javanet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.reinert.requestor.impl</groupId>
<artifactId>requestor-impl-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>requestor-javanet</artifactId>
Expand Down Expand Up @@ -79,6 +79,13 @@
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion requestor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>io.reinert.requestor</groupId>
<artifactId>requestor-project</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<packaging>pom</packaging>
Expand Down

0 comments on commit f158076

Please sign in to comment.