Skip to content

Commit

Permalink
2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Apr 17, 2022
1 parent 3c99a0d commit b3e3ce5
Show file tree
Hide file tree
Showing 4 changed files with 179 additions and 8 deletions.
59 changes: 58 additions & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,47 @@

<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.0-preview_88</version>
<version>2.0.0</version>

<packaging>jar</packaging>
<name>fastjson2</name>
<description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description>

<url>https://github.com/alibaba/fastjson2</url>
<inceptionYear>2022</inceptionYear>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>

<scm>
<url>https://github.com/alibaba/fastjson2</url>
<connection>scm:git:https://git@github.com/alibaba/fastjson2.git</connection>
</scm>

<organization>
<name>Alibaba Group</name>
<url>https://github.com/alibaba</url>
</organization>

<developers>
<developer>
<id>wenshao</id>
<name>wenshao</name>
<email>shaojin.wensj@alibaba-inc.com</email>
</developer>
</developers>

<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -42,6 +76,29 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<show>public</show>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<links>
<link>http://docs.oracle.com/javase/8/docs/api</link>
</links>
</configuration>
</plugin>

<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
Expand Down
63 changes: 60 additions & 3 deletions extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,48 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson-extension</artifactId>
<version>2.0.0-preview_88</version>
<artifactId>fastjson2-extension</artifactId>
<version>2.0.0</version>

<packaging>jar</packaging>
<name>fastjson2-extension</name>
<description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description>

<url>https://github.com/alibaba/fastjson2</url>
<inceptionYear>2022</inceptionYear>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>

<scm>
<url>https://github.com/alibaba/fastjson2</url>
<connection>scm:git:https://git@github.com/alibaba/fastjson2.git</connection>
</scm>

<organization>
<name>Alibaba Group</name>
<url>https://github.com/alibaba</url>
</organization>

<developers>
<developer>
<id>wenshao</id>
<name>wenshao</name>
<email>shaojin.wensj@alibaba-inc.com</email>
</developer>
</developers>

<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<build>
<plugins>
<plugin>
Expand All @@ -31,6 +65,29 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<show>public</show>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<links>
<link>http://docs.oracle.com/javase/8/docs/api</link>
</links>
</configuration>
</plugin>

<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
Expand All @@ -51,7 +108,7 @@
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.0-preview_88</version>
<version>2.0.0</version>
</dependency>

<dependency>
Expand Down
63 changes: 60 additions & 3 deletions fastjson1_compatible/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,48 @@

<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.0-preview_88</version>
<name>fastjson1-compatible</name>
<version>2.0.0</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<junit.version>4.13.1</junit.version>
</properties>

<packaging>jar</packaging>
<description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description>

<url>https://github.com/alibaba/fastjson2</url>
<inceptionYear>2022</inceptionYear>

<scm>
<url>https://github.com/alibaba/fastjson2</url>
<connection>scm:git:https://git@github.com/alibaba/fastjson2.git</connection>
</scm>

<organization>
<name>Alibaba Group</name>
<url>https://github.com/alibaba</url>
</organization>

<developers>
<developer>
<id>wenshao</id>
<name>wenshao</name>
<email>shaojin.wensj@alibaba-inc.com</email>
</developer>
</developers>

<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<build>
<plugins>
<plugin>
Expand All @@ -32,6 +66,29 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<show>public</show>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<links>
<link>http://docs.oracle.com/javase/8/docs/api</link>
</links>
</configuration>
</plugin>

<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
Expand All @@ -51,8 +108,8 @@
<dependencies>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson-extension</artifactId>
<version>2.0.0-preview_88</version>
<artifactId>fastjson2-extension</artifactId>
<version>2.0.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson-parent</artifactId>
<version>2.0.0-preview_88</version>
<version>2.0.0</version>
<packaging>pom</packaging>

<properties>
Expand Down

0 comments on commit b3e3ce5

Please sign in to comment.