Skip to content

Commit 7000412

Browse files
authored
Merge pull request #5 from celeduc/mavenize
fix Maven dependencies and bump version to 1.0.1
2 parents bfad531 + e552593 commit 7000412

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ for Maven, you can add the follwing sections to your POM.XML:
4949
<dependency>
5050
<groupId>com.github.ipld</groupId>
5151
<artifactId>java-cid</artifactId>
52-
<version>v1.0.0</version>
52+
<version>v1.0.1</version>
5353
</dependency>
5454
</dependencies>
5555
```

pom.xml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.ipfs</groupId>
66
<artifactId>cid</artifactId>
7-
<version>1.0.0</version>
7+
<version>1.0.1</version>
88
<packaging>jar</packaging>
99

1010
<name>cid</name>
@@ -36,6 +36,13 @@
3636
<hamcrest.version>1.3</hamcrest.version>
3737
</properties>
3838

39+
<repositories>
40+
<repository>
41+
<id>jitpack.io</id>
42+
<url>https://jitpack.io</url>
43+
</repository>
44+
</repositories>
45+
3946
<dependencies>
4047
<dependency>
4148
<groupId>junit</groupId>
@@ -49,6 +56,16 @@
4956
<version>${hamcrest.version}</version>
5057
<scope>test</scope>
5158
</dependency>
59+
<dependency>
60+
<groupId>com.github.multiformats</groupId>
61+
<artifactId>java-multibase</artifactId>
62+
<version>v1.0.0</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.github.multiformats</groupId>
66+
<artifactId>java-multihash</artifactId>
67+
<version>v1.1.0</version>
68+
</dependency>
5269
</dependencies>
5370

5471
<build>

0 commit comments

Comments
 (0)