Skip to content

Commit

Permalink
Releasing v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oak committed Mar 3, 2022
1 parent e143789 commit 6e1d2a0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crypto-key-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>crypto-keys</artifactId>
<groupId>com.syntifi.crypto</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions crypto-key-ed25519/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>crypto-keys</artifactId>
<groupId>com.syntifi.crypto</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -18,12 +18,12 @@
<dependency>
<groupId>com.syntifi.crypto</groupId>
<artifactId>crypto-key-common</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>com.syntifi.crypto</groupId>
<artifactId>crypto-key-common</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
14 changes: 10 additions & 4 deletions crypto-key-secp256k1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>crypto-keys</artifactId>
<groupId>com.syntifi.crypto</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -19,17 +19,24 @@
<dependency>
<groupId>com.syntifi.crypto</groupId>
<artifactId>crypto-key-common</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>org.web3j</groupId>
<artifactId>core</artifactId>
<version>${web3j.version}</version>
</dependency>
<!-- Bumping jackson version from web3j to solve vulnerabilities -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.syntifi.crypto</groupId>
<artifactId>crypto-key-common</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand All @@ -39,5 +46,4 @@
<scope>test</scope>
</dependency>
</dependencies>

</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.syntifi.crypto</groupId>
<artifactId>crypto-keys</artifactId>
<packaging>pom</packaging>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<modules>
<module>crypto-key-ed25519</module>
<module>crypto-key-secp256k1</module>
Expand Down

0 comments on commit 6e1d2a0

Please sign in to comment.