You can download json-io-4.1.6.jar in this page.
The Apache Software License, Version 2.0
json-io-4.1.6.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.cedarsoftware/json-io/pom.properties META-INF/maven/com.cedarsoftware/json-io/pom.xml com.cedarsoftware.util.io.FastPushbackReader.class com.cedarsoftware.util.io.JsonIoException.class com.cedarsoftware.util.io.JsonObject.class com.cedarsoftware.util.io.JsonParser.class com.cedarsoftware.util.io.JsonReader.class com.cedarsoftware.util.io.JsonWriter.class com.cedarsoftware.util.io.MapResolver.class com.cedarsoftware.util.io.MetaUtils.class com.cedarsoftware.util.io.ObjectResolver.class com.cedarsoftware.util.io.Readers.class com.cedarsoftware.util.io.Resolver.class com.cedarsoftware.util.io.Writers.class
json-io-4.1.6.pom file content.
<?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> <name>json-io</name> <groupId>com.cedarsoftware</groupId> <artifactId>json-io</artifactId> <packaging>bundle</packaging> <version>4.1.6</version> <description>Java JSON serialization</description> <url>https://github.com/jdereg/json-io</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/jdereg/json-io</url> <connection>scm:git:git://github.com/jdereg/json-io.git</connection> <developerConnection>scm:git:git@github.com:jdereg/json-io.git</developerConnection> <tag>4.1.6.201508011954</tag> </scm> <developers> <developer> <id>jdereg</id> <name>John DeRegnaucourt</name> <email>jdereg@gmail.com</email> </developer> </developers> <properties> <version.java-util>1.19.3</version.java-util> <version.junit>4.12</version.junit> <version.groovy>2.4.4</version.groovy> <version.gson>2.3</version.gson> <version.plugin.compiler>3.2</version.plugin.compiler> <version.plugin.deploy>2.8.2</version.plugin.deploy> <version.plugin.source>2.4</version.plugin.source> <version.plugin.javadoc>2.10.1</version.plugin.javadoc> <version.plugin.gpg>1.5</version.plugin.gpg> <version.plugin.release>2.5.1</version.plugin.release> <version.plugin.surefire>2.18.1</version.plugin.surefire> <version.plugin.groovy.eclipse.compiler>2.9.2-01</version.plugin.groovy.eclipse.compiler> <version.plugin.groovy.eclipse.batch>2.4.3-01</version.plugin.groovy.eclipse.batch> <version.plugin.felix.scr>1.7.4</version.plugin.felix.scr> <version.plugin.felix.bundle>2.5.3</version.plugin.felix.bundle> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <pluginRepositories> <pluginRepository> <id>central</id> <name>Maven Plugin Repository</name> <url>http://repo1.maven.org/maven2</url> <layout>default</layout> <snapshots> <enabled>false</enabled> </snapshots> <releases> <updatePolicy>never</updatePolicy> </releases> </pluginRepository> </pluginRepositories> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>snapshot-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <version>${version.plugin.felix.scr}</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${version.plugin.felix.bundle}</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>com.cedarsoftware.util.io</Export-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <goals> <goal> manifest </goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${version.plugin.compiler}</version> <configuration> <source>1.6</source> <target>1.6</target> <compilerId>groovy-eclipse-compiler</compilerId> <!-- <verbose>true</verbose> --> </configuration> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>${version.plugin.groovy.eclipse.compiler}</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-batch</artifactId> <version>${version.plugin.groovy.eclipse.batch}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.plugin.source}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${version.plugin.deploy}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.plugin.javadoc}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${version.plugin.gpg}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${version.plugin.release}</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${version.plugin.surefire}</version> <configuration> <forkCount>1</forkCount> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.cedarsoftware</groupId> <artifactId>java-util</artifactId> <version>${version.java-util}</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${version.gson}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>${version.groovy}</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.cedarsoftware</groupId> <artifactId>json-io</artifactId> <version>4.1.6</version> </dependency>
If you think the following json-io-4.1.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download json-io-4.1.6.jar file