From 1664417463776e5f155bac9f20bd8a7f1510d9db Mon Sep 17 00:00:00 2001 From: Stefan Bratanov Date: Thu, 17 Aug 2023 15:13:18 +0100 Subject: [PATCH] Rename `jvm-libp2p-minimal` to `jvm-libp2p` (#302) --- README.md | 8 ++++---- build.gradle.kts | 2 +- libp2p/gradle.properties | 2 +- settings.gradle | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 593dadd51..83708458b 100644 --- a/README.md +++ b/README.md @@ -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/). @@ -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 @@ -113,7 +113,7 @@ And then add jvm-libp2p as a dependency: ``` xml io.libp2p - jvm-libp2p-minimal + jvm-libp2p X.Y.Z-RELEASE pom @@ -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 diff --git a/build.gradle.kts b/build.gradle.kts index b6e9a7271..64ce83673 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ import java.net.URL // To publish the release artifact to CloudSmith repo run the following : // ./gradlew publish -PcloudsmithUser= -PcloudsmithApiKey= -description = "a minimal implementation of libp2p for the jvm" +description = "an implementation of libp2p for the jvm" plugins { val kotlinVersion = "1.6.21" diff --git a/libp2p/gradle.properties b/libp2p/gradle.properties index 0ef1e083b..3d6bf87a8 100644 --- a/libp2p/gradle.properties +++ b/libp2p/gradle.properties @@ -1 +1 @@ -mavenArtifactId=jvm-libp2p-minimal \ No newline at end of file +mavenArtifactId=jvm-libp2p \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 3840b0611..3b2d71fae 100644 --- a/settings.gradle +++ b/settings.gradle @@ -15,7 +15,7 @@ dependencyResolutionManagement { } } -rootProject.name = 'jvm-libp2p-minimal' +rootProject.name = 'jvm-libp2p' include ':libp2p' include ':tools:schedulers'