Skip to content

Commit 4b88416

Browse files
authored
Merge pull request #11 from tdiesler/ghi6
Managing versions of Java multiformats on Maven
2 parents f61099a + bf0a942 commit 4b88416

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

.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: 17 additions & 17 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>multibase</artifactId>
7-
<version>1.0.0</version>
5+
<groupId>com.github.multiformats</groupId>
6+
<artifactId>java-multibase</artifactId>
7+
<version>v1.0.1-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<name>multibase</name>
@@ -32,23 +32,23 @@
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>
3737
</properties>
3838

3939
<dependencies>
40-
<dependency>
41-
<groupId>junit</groupId>
42-
<artifactId>junit</artifactId>
43-
<version>${junit.version}</version>
44-
<scope>test</scope>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.hamcrest</groupId>
48-
<artifactId>hamcrest-core</artifactId>
49-
<version>${hamcrest.version}</version>
50-
<scope>test</scope>
51-
</dependency>
40+
<dependency>
41+
<groupId>junit</groupId>
42+
<artifactId>junit</artifactId>
43+
<version>${version.junit}</version>
44+
<scope>test</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.hamcrest</groupId>
48+
<artifactId>hamcrest-core</artifactId>
49+
<version>${version.hamcrest}</version>
50+
<scope>test</scope>
51+
</dependency>
5252
</dependencies>
5353

5454
<build>

0 commit comments

Comments
 (0)