Skip to content

Commit

Permalink
Rename jvm-libp2p-minimal to jvm-libp2p (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov authored Aug 17, 2023
1 parent 7b853f6 commit 1664417
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Please check the Simulator [README](tools/simulator/README.md) for more details

Hosting of artefacts is graciously provided by [Cloudsmith](https://cloudsmith.com).

[![Latest version of 'jvm-libp2p-minimal' @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/libp2p/jvm-libp2p/maven/jvm-libp2p-minimal/latest/a=noarch;xg=io.libp2p/?render=true&show_latest=true)](https://cloudsmith.io/~libp2p/repos/jvm-libp2p/packages/detail/maven/jvm-libp2p-minimal/latest/a=noarch;xg=io.libp2p/)
[![Latest version of 'jvm-libp2p' @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/libp2p/jvm-libp2p/maven/jvm-libp2p/latest/a=noarch;xg=io.libp2p/?render=true&show_latest=true)](https://cloudsmith.io/~libp2p/repos/jvm-libp2p/packages/detail/maven/jvm-libp2p/latest/a=noarch;xg=io.libp2p/)

As an alternative, artefacts are also available on [JitPack](https://jitpack.io/).

Expand All @@ -87,7 +87,7 @@ Add the library to the `implementation` part of your Gradle file.
```groovy
dependencies {
// ...
implementation 'io.libp2p:jvm-libp2p-minimal:X.Y.Z-RELEASE'
implementation 'io.libp2p:jvm-libp2p:X.Y.Z-RELEASE'
}
```
### Using Maven
Expand All @@ -113,7 +113,7 @@ And then add jvm-libp2p as a dependency:
``` xml
<dependency>
<groupId>io.libp2p</groupId>
<artifactId>jvm-libp2p-minimal</artifactId>
<artifactId>jvm-libp2p</artifactId>
<version>X.Y.Z-RELEASE</version>
<type>pom</type>
</dependency>
Expand All @@ -138,7 +138,7 @@ To build the library from the `jvm-libp2p` folder, run:
./gradlew build
```

After the build is complete you may find the library `.jar` file here: `jvm-libp2p/build/libs/jvm-libp2p-minimal-0.x.y-RELEASE.jar`
After the build is complete you may find the library `.jar` file here: `jvm-libp2p/build/libs/jvm-libp2p-X.Y.Z-RELEASE.jar`

## License

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import java.net.URL
// To publish the release artifact to CloudSmith repo run the following :
// ./gradlew publish -PcloudsmithUser=<user> -PcloudsmithApiKey=<api-key>

description = "a minimal implementation of libp2p for the jvm"
description = "an implementation of libp2p for the jvm"

plugins {
val kotlinVersion = "1.6.21"
Expand Down
2 changes: 1 addition & 1 deletion libp2p/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mavenArtifactId=jvm-libp2p-minimal
mavenArtifactId=jvm-libp2p
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencyResolutionManagement {
}
}

rootProject.name = 'jvm-libp2p-minimal'
rootProject.name = 'jvm-libp2p'

include ':libp2p'
include ':tools:schedulers'
Expand Down

0 comments on commit 1664417

Please sign in to comment.