easyjson-test-jsonlib-to-fastjson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.bes2008.solution.easyjson</groupId>
<artifactId>easyjson-test-jsonlib-to-fastjson</artifactId>
<version>4.1.7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>io.github.bes2008.solution.easyjson</groupId>
<artifactId>easyjson-test-jsonlib</artifactId>
<version>4.1.7</version>
</parent>
<artifactId>easyjson-test-jsonlib-to-fastjson</artifactId>
<name>${project.groupId}:${project.artifactId}:${project.version}</name>
<packaging>jar</packaging>
<description>
使用easyjson或jsonlib的API, 以fastjson作为实现框架的测试场景
(引用jsonlib-to-easyjson作为jsonlib的API的桥接, 引用easyjson-fastjson作为json的实现框架)
</description>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<dependencies>
<dependency>
<groupId>io.github.bes2008.solution.easyjson</groupId>
<artifactId>easyjson-core</artifactId>
</dependency>
<dependency>
<groupId>io.github.bes2008.solution.easyjson</groupId>
<artifactId>jsonlib-to-easyjson</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.bes2008.solution.easyjson</groupId>
<artifactId>easyjson-fastjson</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.bes2008.solution.easyjson</groupId>
<artifactId>easyjson-test-jsonlib-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
</dependencies>
</project>