diff --git a/README.md b/README.md index 8e8a1317f..e444a843e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A very simple Maven example: org.jsonschema2pojo jsonschema2pojo-maven-plugin - 1.2.1 + 1.2.2 ${basedir}/src/main/resources/schema com.example.types @@ -31,7 +31,7 @@ A very simple Gradle example: ```groovy plugins { id "java" - id "org.jsonschema2pojo" version "1.2.1" + id "org.jsonschema2pojo" version "1.2.2" } repositories { @@ -51,10 +51,10 @@ Useful pages: * **[Getting started](https://github.com/joelittlejohn/jsonschema2pojo/wiki/Getting-Started)** * **[How to contribute](https://github.com/joelittlejohn/jsonschema2pojo/blob/master/CONTRIBUTING.md)** * [Reference](https://github.com/joelittlejohn/jsonschema2pojo/wiki/Reference) - * [Latest Javadocs](https://joelittlejohn.github.io/jsonschema2pojo/javadocs/1.2.1/) - * [Documentation for the Maven plugin](https://joelittlejohn.github.io/jsonschema2pojo/site/1.2.1/generate-mojo.html) + * [Latest Javadocs](https://joelittlejohn.github.io/jsonschema2pojo/javadocs/1.2.2/) + * [Documentation for the Maven plugin](https://joelittlejohn.github.io/jsonschema2pojo/site/1.2.2/generate-mojo.html) * [Documentation for the Gradle plugin](https://github.com/joelittlejohn/jsonschema2pojo/tree/master/jsonschema2pojo-gradle-plugin#usage) - * [Documentation for the Ant task](https://joelittlejohn.github.io/jsonschema2pojo/site/1.2.1/Jsonschema2PojoTask.html) + * [Documentation for the Ant task](https://joelittlejohn.github.io/jsonschema2pojo/site/1.2.2/Jsonschema2PojoTask.html) Project resources: * [Downloads](https://github.com/joelittlejohn/jsonschema2pojo/releases) diff --git a/jsonschema2pojo-gradle-plugin/README.md b/jsonschema2pojo-gradle-plugin/README.md index 6654fc6cb..bff5603e4 100644 --- a/jsonschema2pojo-gradle-plugin/README.md +++ b/jsonschema2pojo-gradle-plugin/README.md @@ -15,7 +15,7 @@ With Groovy: ```groovy plugins { id "java" - id "org.jsonschema2pojo" version "1.2.1" + id "org.jsonschema2pojo" version "1.2.2" } jsonSchema2Pojo { @@ -28,7 +28,7 @@ With Kotlin: ```kotlin plugins { id("java") - id("org.jsonschema2pojo") version "1.2.1" + id("org.jsonschema2pojo") version "1.2.2" } jsonSchema2Pojo { @@ -44,7 +44,7 @@ Below we have a full build.gradle example, showing all available configuration o ```groovy plugins { id "java" - id "org.jsonschema2pojo" version "1.2.1" + id "org.jsonschema2pojo" version "1.2.2" } repositories {