-
Notifications
You must be signed in to change notification settings - Fork 241
docs: Clarify supported Target Java Version on README (re. #242) #263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -7,7 +7,7 @@ | |||||
|
|
||||||
|  | ||||||
|
|
||||||
| > A Java client for the IPFS http api | ||||||
| > A Java client for the IPFS HTTP API | ||||||
|
|
||||||
| ## Table of Contents | ||||||
|
|
||||||
|
|
@@ -28,7 +28,8 @@ You can use this project by including `ipfs.jar` from one of the [releases](http | |||||
| Package managers are supported through [JitPack](https://jitpack.io/#ipfs/java-ipfs-http-client/) which supports Maven, Gradle, SBT, etc. | ||||||
|
|
||||||
| for Maven, add the following sections to your pom.xml (replacing $LATEST_VERSION): | ||||||
| ``` | ||||||
|
|
||||||
| ```xml | ||||||
| <repositories> | ||||||
| <repository> | ||||||
| <id>jitpack.io</id> | ||||||
|
|
@@ -49,13 +50,14 @@ for Maven, add the following sections to your pom.xml (replacing $LATEST_VERSION | |||||
|
|
||||||
| * Clone this repository | ||||||
| * Run `mvn install` | ||||||
| * Copy `target/ipfs-$VERSION.jar` into your project. Appropriate versions of other [dependencies](#dependencies) are also included in `dist/lib/`. | ||||||
| * Copy `target/ipfs-$VERSION.jar` into your project. | ||||||
| * To copy the project and all dependency JARs to directory, execute `mvn eu.maveniverse.maven.plugins:toolbox:gav-copy -DsourceSpec="resolveTransitive(gav(com.github.ipfs:java-ipfs-http-client:v1.4.5-SNAPSHOT))" -DsinkSpec="flat(.)"` in that given directory. | ||||||
| * Run tests using `mvn test` (invocation above will run them as well). | ||||||
|
|
||||||
| ### Running tests | ||||||
|
|
||||||
| To run tests, IPFS daemon must be running on the `127.0.0.1` interface, with `--enable-pubsub-experiment`. | ||||||
| Run tests using `mvn test`. | ||||||
|
|
||||||
| To run tests, an IPFS daemon must be running on the `127.0.0.1` interface, with `--enable-pubsub-experiment`. | ||||||
|
|
||||||
| ### IPFS installation | ||||||
|
|
||||||
|
|
@@ -108,7 +110,10 @@ Current versions of dependencies are listed in the `pom.xml`, their correspondin | |||||
| * [multihash](https://github.com/multiformats/java-multihash) | ||||||
| * [cid](https://github.com/ipld/java-cid) | ||||||
|
|
||||||
| This library requires (only) Java 11 bytecode & JDK at runtime. (At build time we use current latest LTS tools.) | ||||||
|
||||||
| This library requires (only) Java 11 bytecode & JDK at runtime. (At build time we use current latest LTS tools.) | |
| This library requires Java 11 bytecode & JDK at runtime. (At build time we use current latest LTS tools.) |
Uh oh!
There was an error while loading. Please reload this page.