[gradle] consistent use of maven url in gradle files (#5045)

* wrap maven url with uri function

* consistent use of maven url in gradle files
This commit is contained in:
Sebastien Rosset
2020-01-19 11:57:38 -08:00
committed by Jim Schubert
parent 23131c1a63
commit d61dcc17e0
62 changed files with 88 additions and 88 deletions

View File

@@ -51,7 +51,7 @@ To include in your project, add the following to `build.gradle`:
buildscript {
repositories {
mavenLocal()
maven { url = "https://repo1.maven.org/maven2" }
maven { url "https://repo1.maven.org/maven2" }
}
dependencies {
classpath "org.openapitools:openapi-generator-gradle-plugin:3.3.4"
@@ -96,4 +96,4 @@ openApiGenerate {
dateLibrary: "java8"
]
}
```
```