use implementation, add min version of maven, gradle (#10571)

This commit is contained in:
William Cheng
2021-10-11 21:10:04 +08:00
committed by GitHub
parent efa032abdb
commit 4b62b55877
16 changed files with 138 additions and 21 deletions

View File

@@ -50,7 +50,14 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:
```groovy
compile "org.openapitools:petstore-google-api-client:1.0.0"
repositories {
mavenCentral() // Needed if the 'petstore-google-api-client' jar has been published to maven central.
mavenLocal() // Needed if the 'petstore-google-api-client' jar has been published to the local maven repo.
}
dependencies {
implementation "org.openapitools:petstore-google-api-client:1.0.0"
}
```
### Others