Skip to content

Commit d86299e

Browse files
authored
Merge pull request #17 from tdiesler/ghi16
Align maven coordinates with JitPack
2 parents 8fbcad6 + 6f3fbdb commit d86299e

2 files changed

Lines changed: 16 additions & 12 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.classpath
2+
.project
3+
.settings
14
*.class
25

36
target/**

pom.xml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>io.ipfs</groupId>
6-
<artifactId>multihash</artifactId>
7-
<version>1.2.0</version>
5+
<groupId>com.github.multiformats</groupId>
6+
<artifactId>java-multihash</artifactId>
7+
<version>v1.2.1-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<name>multihash</name>
@@ -32,8 +32,9 @@
3232
<properties>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
35-
<junit.version>4.12</junit.version>
36-
<hamcrest.version>1.3</hamcrest.version>
35+
<version.junit>4.12</version.junit>
36+
<version.hamcrest>1.3</version.hamcrest>
37+
<version.multibase>v1.0.0</version.multibase>
3738
</properties>
3839

3940
<repositories>
@@ -44,23 +45,23 @@
4445
</repositories>
4546

4647
<dependencies>
48+
<dependency>
49+
<groupId>com.github.multiformats</groupId>
50+
<artifactId>java-multibase</artifactId>
51+
<version>${version.multibase}</version>
52+
</dependency>
4753
<dependency>
4854
<groupId>junit</groupId>
4955
<artifactId>junit</artifactId>
50-
<version>${junit.version}</version>
56+
<version>${version.junit}</version>
5157
<scope>test</scope>
5258
</dependency>
5359
<dependency>
5460
<groupId>org.hamcrest</groupId>
5561
<artifactId>hamcrest-core</artifactId>
56-
<version>${hamcrest.version}</version>
62+
<version>${version.hamcrest}</version>
5763
<scope>test</scope>
5864
</dependency>
59-
<dependency>
60-
<groupId>com.github.multiformats</groupId>
61-
<artifactId>java-multibase</artifactId>
62-
<version>v1.0.0</version>
63-
</dependency>
6465
</dependencies>
6566

6667
<build>

0 commit comments

Comments
 (0)