From bd28716e1177c37860da2998c9e3b2ad0cab2585 Mon Sep 17 00:00:00 2001 From: Raphael Vullriede Date: Thu, 9 Nov 2023 08:24:47 +0100 Subject: [PATCH] some readme cleanup --- README.md | 42 ++++++++++++++++++++++++++++++++++++------ pom.xml | 12 ++++++------ 2 files changed, 42 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 0fd61f9..807052e 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,43 @@ -CoinGecko Client (Java) -======================= -![GitHub](https://img.shields.io/github/license/osslabz/coingecko-client) -![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/osslabz/coingecko-client/maven.yml?branch=master) -[![Maven Central](https://img.shields.io/maven-central/v/net.osslabz/coingecko-client?label=Maven%20Central)](https://search.maven.org/artifact/net.osslabz/coingecko-client) +![GitHub](https://img.shields.io/github/license/osslabz/coingecko-java) +![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/osslabz/coingecko-java/maven.yml?branch=master) +[![Maven Central](https://img.shields.io/maven-central/v/net.osslabz/coingecko-java?label=Maven%20Central)](https://search.maven.org/artifact/net.osslabz/coingecko-client) -This is a (synced) fork of [Philipinho/CoinGecko-Java](https://github.com/Philipinho/CoinGecko-Java) that is properly releases on [Maven Central](https://search.maven.org/artifact/net.osslabz/coingecko-client). +This is a (synced) fork of [Philipinho/CoinGecko-Java](https://github.com/Philipinho/CoinGecko-Java) that is properly releases on [Maven Central](https://search.maven.org/artifact/net.osslabz/coingecko-java). Once [Enable CI and Automated Release Management #41](https://github.com/Philipinho/CoinGecko-Java/pull/41) is merged and the original project is published this fork will be discontinued. +Usage +--------- + +### Maven + +```xml + + net.osslabz + coingecko-java + 1.0.0 + +``` + +### Gradle (Groovy) + +```groovy +dependencies { + implementation 'net.osslabz:coingecko-java:1.0.0' +} +``` + +### Gradle (Kotlin) + +```kotlin +dependencies { + implementation ("net.osslabz:coingecko-java:1.0.0") +} +``` + + +**For further info see below the original README.** + --- # CoinGecko-Java diff --git a/pom.xml b/pom.xml index a0c0abc..ad308f8 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,12 @@ 4.0.0 net.osslabz - coingecko-client - 1.0.1 + coingecko-java + 1.0.1-SNAPSHOT ${project.groupId}:${project.artifactId} Java wrapper for the CoinGecko API - https://github.com/osslabz/coingecko-client + https://github.com/osslabz/coingecko-java 8 @@ -36,9 +36,9 @@ - scm:git:ssh://git@github.com/osslabz/coingecko-client.git - scm:git:ssh://git@github.com/osslabz/coingecko-client.git - https://github.com/osslabz/coingecko-client + scm:git:ssh://git@github.com/osslabz/coingecko-java.git + scm:git:ssh://git@github.com/osslabz/coingecko-java.git + https://github.com/osslabz/coingecko-java HEAD