Skip to content

Commit

Permalink
publish fixes 4 (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
minxylynx authored Dec 15, 2022
1 parent 8854a93 commit 6d3a0e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion api-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Explorer API Client
Explorer API client provides the clients to call into the Explorer APIs. Instead of having to manually set up calls to
the APIs, you can import this library to use when accessing to the APIs programmatically.

This is bundled with the appropriate API model library, so you dont have to import the model library separately for use.
You should also import the api-models to be used effectively.

Import
-----
Expand All @@ -20,15 +20,22 @@ Available in the [Maven Central repository](https://search.maven.org/artifact/io
<artifactId>explorer-api-client</artifactId>
<version>latest</version>
</dependency>
<dependency>
<groupId>io.provenance.explorer</groupId>
<artifactId>explorer-api-model</artifactId>
<version>latest</version>
</dependency>
```

**Gradle Groovy**
```groovy
implementation 'io.provenance.explorer:explorer-api-model:latest'
implementation 'io.provenance.explorer:explorer-api-client:latest'
```

**Gradle Kotlin**
```kotlin
implementation("io.provenance.explorer:explorer-api-model:latest")
implementation("io.provenance.explorer:explorer-api-client:latest")
```

Expand Down
2 changes: 1 addition & 1 deletion api-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {
}

dependencies {
api(project(":api-model"))
implementation(project(":api-model"))
implementation("io.github.openfeign:feign-jackson:12.1")
implementation("joda-time:joda-time:2.12.2")
implementation(Libraries.ProvenanceProto)
Expand Down

0 comments on commit 6d3a0e2

Please sign in to comment.