easyjson-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.bes2008.solution.easyjson</groupId> <artifactId>easyjson-examples</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"> <parent> <groupId>io.github.bes2008.solution.easyjson</groupId> <artifactId>easyjson-test</artifactId> <version>4.1.7</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>easyjson-examples</artifactId> <name>${project.groupId}:${project.artifactId}:${project.version}</name> <properties> <maven.deploy.skip>true</maven.deploy.skip> </properties> <dependencies> <!--supported by orgjson-to-easyjson --> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20180813</version> <scope>test</scope> <optional>true</optional> </dependency> <!--supported by jsonlib-to-easyjson --> <!--http://json-lib.sourceforge.net--> <dependency> <groupId>com.hynnet</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <optional>true</optional> </dependency> <!--supported by minimaljson-to-easyjson --> <dependency> <groupId>com.eclipsesource.minimal-json</groupId> <artifactId>minimal-json</artifactId> <version>0.9.5</version> <scope>test</scope> </dependency> <!--supported by moshi-to-easyjson --> <dependency> <groupId>com.squareup.moshi</groupId> <artifactId>moshi</artifactId> <version>1.9.2</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.squareup.moshi</groupId> <artifactId>moshi-adapters</artifactId> <version>1.9.2</version> <scope>test</scope> <optional>true</optional> </dependency> <!--supported by androidjson-to-easyjson --> <dependency> <groupId>com.vaadin.external.google</groupId> <artifactId>android-json</artifactId> <version>0.0.20131108.vaadin1</version> <scope>test</scope> <optional>true</optional> </dependency> <!--supported by boonjson-to-easyjson --> <dependency> <groupId>com.github.advantageous</groupId> <artifactId>boon-json</artifactId> <version>0.5.7-RC1</version> <scope>test</scope> <optional>true</optional> </dependency> <!--supported by simplejson-to-easyjson --> <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple --> <!-- http://code.google.com/p/json-simple/ --> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> <scope>test</scope> <optional>true</optional> </dependency> <!--supported by progsbasejson-to-easyjson --> <dependency> <groupId>com.progsbase.libraries</groupId> <artifactId>JSON</artifactId> <version>0.3.9</version> <scope>test</scope> <optional>true</optional> </dependency> <!--supported by jsonsmart-to-easyjson --> <dependency> <groupId>net.minidev</groupId> <artifactId>json-smart</artifactId> <version>2.3</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.github.bes2008.solution.easyjson</groupId> <artifactId>easyjson-core</artifactId> </dependency> <dependency> <groupId>io.github.bes2008.solution.easyjson</groupId> <artifactId>easyjson-gson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <optional>true</optional> <version>2.8.6</version> </dependency> <dependency> <groupId>io.github.bes2008.solution.easyjson</groupId> <artifactId>easyjson-jackson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.bes2008.solution.easyjson</groupId> <artifactId>easyjson-fastjson</artifactId> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <optional>true</optional> <version>1.2.83</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <configuration> <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> </configuration> </plugin> </plugins> </build> </project>