2.0.56 release

This commit is contained in:
wenshao 2025-02-22 08:12:14 +08:00
parent 6771980803
commit 63a6854da9
28 changed files with 61 additions and 61 deletions

View File

@ -41,7 +41,7 @@
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId> <artifactId>fastjson2</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -49,7 +49,7 @@
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2:2.0.56'
} }
``` ```
@ -67,7 +67,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -75,7 +75,7 @@ dependencies {
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba:fastjson:2.0.55' implementation 'com.alibaba:fastjson:2.0.56'
} }
``` ```
@ -89,7 +89,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId> <artifactId>fastjson2-kotlin</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -114,7 +114,7 @@ dependencies {
```kotlin ```kotlin
dependencies { dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55") implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
} }
``` ```
@ -135,7 +135,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring5</artifactId> <artifactId>fastjson2-extension-spring5</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -143,7 +143,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring6</artifactId> <artifactId>fastjson2-extension-spring6</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -151,14 +151,14 @@ dependencies {
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.56'
} }
``` ```
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.56'
} }
``` ```

View File

@ -47,7 +47,7 @@ Related Documents:
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId> <artifactId>fastjson2</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -55,7 +55,7 @@ Related Documents:
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2:2.0.56'
} }
``` ```
@ -73,7 +73,7 @@ If you are using `fastjson 1.2.x`, you can use the compatibility package. The co
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -81,7 +81,7 @@ If you are using `fastjson 1.2.x`, you can use the compatibility package. The co
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba:fastjson:2.0.55' implementation 'com.alibaba:fastjson:2.0.56'
} }
``` ```
@ -95,7 +95,7 @@ If your project uses `kotlin`, you can use the `Fastjson-Kotlin` module, and use
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId> <artifactId>fastjson2-kotlin</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -120,7 +120,7 @@ If the data class is used or the parameters are passed in through constructor, t
```kotlin ```kotlin
dependencies { dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55") implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
} }
``` ```
@ -141,7 +141,7 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId> <artifactId>fastjson2-extension</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -149,7 +149,7 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.56'
} }
``` ```

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -31,7 +31,7 @@
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId> <artifactId>fastjson2</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -39,7 +39,7 @@
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2:2.0.56'
} }
``` ```
@ -57,7 +57,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -65,7 +65,7 @@ dependencies {
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba:fastjson:2.0.55' implementation 'com.alibaba:fastjson:2.0.56'
} }
``` ```
@ -79,7 +79,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId> <artifactId>fastjson2-kotlin</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -87,7 +87,7 @@ dependencies {
```kotlin ```kotlin
dependencies { dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55") implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
} }
``` ```
@ -101,7 +101,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId> <artifactId>fastjson2-extension</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -109,7 +109,7 @@ dependencies {
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.56'
} }
``` ```

View File

@ -10,7 +10,7 @@
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId> <artifactId>fastjson2-kotlin</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -35,7 +35,7 @@
```kotlin ```kotlin
dependencies { dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55") implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
} }
``` ```

View File

@ -10,7 +10,7 @@ If your project uses `kotlin`, you can use the` Fastjson-Kotlin` module, and use
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId> <artifactId>fastjson2-kotlin</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -35,7 +35,7 @@ If the data class is used or the parameters are passed in through constructor, t
```kotlin ```kotlin
dependencies { dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55") implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
} }
``` ```

View File

@ -10,7 +10,7 @@ Fastjson2采用多module的结构设计对SpringFramework等框架的支持
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring5</artifactId> <artifactId>fastjson2-extension-spring5</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
or or
@ -18,7 +18,7 @@ or
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring6</artifactId> <artifactId>fastjson2-extension-spring6</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -26,13 +26,13 @@ or
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.56'
} }
or or
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.56'
} }
``` ```
> 2.0.23版本之后为了兼容Spring 5.x / 6.x将不同版本独立开不同的依赖包。 > 2.0.23版本之后为了兼容Spring 5.x / 6.x将不同版本独立开不同的依赖包。

View File

@ -11,7 +11,7 @@ independent in the `extension` dependency.
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring5</artifactId> <artifactId>fastjson2-extension-spring5</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
or or
@ -19,7 +19,7 @@ or
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring6</artifactId> <artifactId>fastjson2-extension-spring6</artifactId>
<version>2.0.55</version> <version>2.0.56</version>
</dependency> </dependency>
``` ```
@ -27,13 +27,13 @@ or
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.56'
} }
or or
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.55' implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.56'
} }
``` ```
> After version 2.0.23, in order to be compatible with Spring 5.x / 6.x, different versions are independently opened with different dependency packages. > After version 2.0.23, in order to be compatible with Spring 5.x / 6.x, different versions are independently opened with different dependency packages.

View File

@ -1,3 +1,3 @@
JDK 17中提供了[vector api](https://openjdk.org/jeps/426)可以用SIMD来优化性能。 JDK 17中提供了[vector api](https://openjdk.org/jeps/426)可以用SIMD来优化性能。
fastjson 2.0.55版本开始全面使用SWAR(SIMD within a register)来做SIMD优化不再需要使用vector api. fastjson 2.0.56版本开始全面使用SWAR(SIMD within a register)来做SIMD优化不再需要使用vector api.

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
@ -35,7 +35,7 @@
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target> <maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
<fastjson2.version>2.0.56-SNAPSHOT</fastjson2.version> <fastjson2.version>2.0.56</fastjson2.version>
<imageName>fastjson2-example-graalvm-native</imageName> <imageName>fastjson2-example-graalvm-native</imageName>
</properties> </properties>

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
@ -16,7 +16,7 @@
<properties> <properties>
<maven.test.skip>true</maven.test.skip> <maven.test.skip>true</maven.test.skip>
<maven.deploy.skip>true</maven.deploy.skip> <maven.deploy.skip>true</maven.deploy.skip>
<fastjson2.version>2.0.56-SNAPSHOT</fastjson2.version> <fastjson2.version>2.0.56</fastjson2.version>
<java.version>17</java.version> <java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target> <maven.compiler.target>${maven.compiler.source}</maven.compiler.target>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-jaxrs</artifactId> <artifactId>fastjson2-extension-jaxrs</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
</parent> </parent>
<artifactId>fastjson2-extension-jaxrs-jakarta</artifactId> <artifactId>fastjson2-extension-jaxrs-jakarta</artifactId>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-jaxrs</artifactId> <artifactId>fastjson2-extension-jaxrs</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
</parent> </parent>
<artifactId>fastjson2-extension-jaxrs-javax</artifactId> <artifactId>fastjson2-extension-jaxrs-javax</artifactId>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
</parent> </parent>
<artifactId>fastjson2-extension-jaxrs</artifactId> <artifactId>fastjson2-extension-jaxrs</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description> <description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.56-SNAPSHOT</version> <version>2.0.56</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>