Skip to content

Commit

Permalink
[release] updating README.md for 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joelittlejohn committed Sep 21, 2024
1 parent 990e024 commit 486877b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A very simple Maven example:
<plugin>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-maven-plugin</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<configuration>
<sourceDirectory>${basedir}/src/main/resources/schema</sourceDirectory>
<targetPackage>com.example.types</targetPackage>
Expand All @@ -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 {
Expand All @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions jsonschema2pojo-gradle-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand Down

0 comments on commit 486877b

Please sign in to comment.