|
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>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> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
10 | 10 | <name>multibase</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 | 37 | </properties> |
38 | 38 |
|
39 | 39 | <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> |
52 | 52 | </dependencies> |
53 | 53 |
|
54 | 54 | <build> |
|
0 commit comments