You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use this project by building the JAR file as specified below, or by using [JitPack](https://jitpack.io/#multiformats/java-multibase/) (also supporting Gradle, SBT, etc).
19
+
20
+
for Maven, you can add the follwing sections to your POM.XML:
21
+
```
22
+
<repositories>
23
+
<repository>
24
+
<id>jitpack.io</id>
25
+
<url>https://jitpack.io</url>
26
+
</repository>
27
+
</repositories>
28
+
29
+
<dependencies>
30
+
<dependency>
31
+
<groupId>com.github.multiformats</groupId>
32
+
<artifactId>java-multibase</artifactId>
33
+
<version>v1.0.0</version>
34
+
</dependency>
35
+
</dependencies>
36
+
```
37
+
38
+
## Testing
39
+
40
+
### Ant
41
+
`ant test`
42
+
43
+
### Maven
44
+
`mvn test`
45
+
46
+
## Building
47
+
48
+
### Ant
49
+
`ant dist` will build a JAR file in the `./dist` suitable for manual inclusion in a project. Dependent libraries are included in `./dist/lib`.
50
+
51
+
### Maven
52
+
`mvn package` will build a JAR file with Maven dependency information.
53
+
54
+
## Releasing
55
+
The version number is specified in `build.xml` and `pom.xml` and must be changed in both places in order to be accurately reflected in the JAR file manifest. A git tag must be added in the format "vx.x.x" for JitPack to work.
Contributions welcome. Please check out [the issues](https://github.com/multiformats/java-multibase/issues).
64
+
65
+
Check out our [contributing document](https://github.com/multiformats/multiformats/blob/master/contributing.md) for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
66
+
67
+
Small note: If editing the Readme, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification.
0 commit comments