Skip to content

Commit

Permalink
Merge pull request #460 from /issues/459-prepare-release
Browse files Browse the repository at this point in the history
Fix #459: Prepare release 1.2.5
  • Loading branch information
romanstrobl authored Apr 1, 2022
2 parents 2b816fe + 3b5a4c5 commit 5523284
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 21 deletions.
23 changes: 12 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

<groupId>io.getlime.security</groupId>
<artifactId>powerauth-push-server-parent</artifactId>
<version>1.2.1</version>
<version>1.2.5</version>
<packaging>pom</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.1</version>
<version>2.6.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand Down Expand Up @@ -73,18 +73,19 @@
<maven.compiler.target>1.8</maven.compiler.target>

<!-- Library Versions -->
<guava.version>31.0.1-jre</guava.version>
<h2.version>1.4.199</h2.version> <!-- CAUTION WHEN UPDATING - https://github.com/h2database/h2database/issues/2078 -->
<jackson.version>2.13.0</jackson.version>
<jackson-databind.version>2.13.0</jackson-databind.version>
<guava.version>31.1-jre</guava.version>
<h2.version>2.1.210</h2.version>
<jackson.version>2.13.2</jackson.version>
<jackson-databind.version>2.13.2.2</jackson-databind.version>
<javax.interceptor-api.version>1.2.2</javax.interceptor-api.version>
<rest-base.version>1.4.1</rest-base.version>
<powerauth.version>1.2.0</powerauth.version>
<pushy.version>0.15.0</pushy.version>
<springdoc-openapi.version>1.6.0</springdoc-openapi.version>
<google-api-client.version>1.32.2</google-api-client.version>
<powerauth.version>1.2.5</powerauth.version>
<powerauth-crypto.version>1.2.0</powerauth-crypto.version>
<pushy.version>0.15.1</pushy.version>
<springdoc-openapi.version>1.6.6</springdoc-openapi.version>
<google-api-client.version>1.33.4</google-api-client.version>
<firebase-admin.version>8.1.0</firebase-admin.version>
<bc.version>1.69</bc.version>
<bc.version>1.70</bc.version>
</properties>

<build>
Expand Down
6 changes: 3 additions & 3 deletions powerauth-push-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>powerauth-push-client</artifactId>
<description>PowerAuth Push Server RESTful Client</description>
<version>1.2.1</version>
<version>1.2.5</version>
<packaging>jar</packaging>

<parent>
<artifactId>powerauth-push-server-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.1</version>
<version>1.2.5</version>
</parent>

<dependencies>
Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-push-model</artifactId>
<version>1.2.1</version>
<version>1.2.5</version>
</dependency>

<!-- Spring Dependencies -->
Expand Down
4 changes: 2 additions & 2 deletions powerauth-push-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

<artifactId>powerauth-push-model</artifactId>
<description>PowerAuth Push Server RESTful Model Classes</description>
<version>1.2.1</version>
<version>1.2.5</version>
<packaging>jar</packaging>

<parent>
<artifactId>powerauth-push-server-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.1</version>
<version>1.2.5</version>
</parent>

<dependencies>
Expand Down
10 changes: 5 additions & 5 deletions powerauth-push-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<name>powerauth-push-server</name>
<description>PowerAuth Push Server</description>
<artifactId>powerauth-push-server</artifactId>
<version>1.2.1</version>
<version>1.2.5</version>
<packaging>war</packaging>

<parent>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-push-server-parent</artifactId>
<version>1.2.1</version>
<version>1.2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -100,12 +100,12 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-push-model</artifactId>
<version>1.2.1</version>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-push-client</artifactId>
<version>1.2.1</version>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
Expand Down Expand Up @@ -146,7 +146,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-java-crypto</artifactId>
<version>${powerauth.version}</version>
<version>${powerauth-crypto.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 5523284

Please sign in to comment.