101 lines
3.4 KiB
XML
101 lines
3.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2-parent</artifactId>
|
|
<version>2.0.57-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>fastjson2-extension-solon</artifactId>
|
|
<name>fastjson2-extension-solon</name>
|
|
<description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description>
|
|
<packaging>jar</packaging>
|
|
<url>https://github.com/alibaba/fastjson2</url>
|
|
<inceptionYear>2024</inceptionYear>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache 2</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
<comments>A business-friendly OSS license</comments>
|
|
</license>
|
|
</licenses>
|
|
<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(at)alibaba-inc.com</email>
|
|
<roles>
|
|
<role>Developer</role>
|
|
<role>Tech Leader</role>
|
|
</roles>
|
|
<timezone>+8</timezone>
|
|
<url>https://github.com/wenshao</url>
|
|
</developer>
|
|
<developer>
|
|
<id>noear</id>
|
|
<name>noear</name>
|
|
<email>noear@live.cn</email>
|
|
<timezone>+8</timezone>
|
|
<url>https://github.com/noear</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-serialization</artifactId>
|
|
<version>${solon.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-logging-simple</artifactId>
|
|
<version>${solon.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-test</artifactId>
|
|
<version>${solon.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<includes>
|
|
<include>com/alibaba/fastjson2/**/*.java</include>
|
|
</includes>
|
|
<systemPropertyVariables>
|
|
<user.timezone>Asia/Shanghai</user.timezone>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|