|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | | - <groupId>io.ipfs</groupId> |
6 | | - <artifactId>multiaddr</artifactId> |
7 | | - <version>1.3.0</version> |
| 5 | + <groupId>com.github.multiformats</groupId> |
| 6 | + <artifactId>java-multiaddr</artifactId> |
| 7 | + <version>v1.3.1-SNAPSHOT</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
10 | 10 | <name>multiaddr</name> |
|
32 | 32 | <properties> |
33 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
34 | 34 | <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.cid>v1.1.0</version.cid> |
37 | 38 | </properties> |
38 | 39 |
|
39 | 40 | <repositories> |
|
44 | 45 | </repositories> |
45 | 46 |
|
46 | 47 | <dependencies> |
47 | | - <dependency> |
48 | | - <groupId>junit</groupId> |
49 | | - <artifactId>junit</artifactId> |
50 | | - <version>${junit.version}</version> |
51 | | - <scope>test</scope> |
52 | | - </dependency> |
53 | | - <dependency> |
54 | | - <groupId>org.hamcrest</groupId> |
55 | | - <artifactId>hamcrest-core</artifactId> |
56 | | - <version>${hamcrest.version}</version> |
57 | | - <scope>test</scope> |
58 | | - </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> |
69 | | - <dependency> |
70 | | - <groupId>com.github.ipld</groupId> |
71 | | - <artifactId>java-cid</artifactId> |
72 | | - <version>v1.1.0</version> |
73 | | - </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>com.github.ipld</groupId> |
| 50 | + <artifactId>java-cid</artifactId> |
| 51 | + <version>${version.cid}</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>junit</groupId> |
| 55 | + <artifactId>junit</artifactId> |
| 56 | + <version>${version.junit}</version> |
| 57 | + <scope>test</scope> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.hamcrest</groupId> |
| 61 | + <artifactId>hamcrest-core</artifactId> |
| 62 | + <version>${version.hamcrest}</version> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
74 | 65 | </dependencies> |
75 | 66 |
|
76 | 67 | <build> |
|
0 commit comments