Skip to content

Commit

Permalink
Fix #226: Update version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
romanstrobl committed Dec 22, 2021
1 parent 20f2f99 commit f39b237
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>io.getlime.security</groupId>
<artifactId>powerauth-cmd-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
<packaging>pom</packaging>

<inceptionYear>2016</inceptionYear>
Expand Down
20 changes: 10 additions & 10 deletions powerauth-java-cmd-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>powerauth-java-cmd-lib</artifactId>
<description>PowerAuth Command-line Utility - Java Library</description>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>

<parent>
<artifactId>powerauth-cmd-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.3</version>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.4</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
Expand All @@ -45,23 +45,23 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-restful-model</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-java-crypto</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-java-http</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.68</version>
<version>1.69</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -91,7 +91,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<version>1.18.22</version>
</dependency>

</dependencies>
Expand Down
10 changes: 5 additions & 5 deletions powerauth-java-cmd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>powerauth-java-cmd</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
<name>powerauth-java-cmd</name>
<description>PowerAuth Reference Client Application connected to PowerAuth Standard RESTful API</description>

Expand All @@ -31,15 +31,15 @@
<parent>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-cmd-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-java-cmd-lib</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
<exclusions>
<exclusion>
<artifactId>log4j-to-slf4j</artifactId>
Expand All @@ -50,13 +50,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.2</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.68</version>
<version>1.69</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit f39b237

Please sign in to comment.