Download json-smart-2.1.1.jar file

Introduction

You can download json-smart-2.1.1.jar in this page.

License

Open Source License

Type List

json-smart-2.1.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.minidev/json-smart/pom.properties
META-INF/maven/net.minidev/json-smart/pom.xml
net.minidev.json.JSONArray.class
net.minidev.json.JSONAware.class
net.minidev.json.JSONAwareEx.class
net.minidev.json.JSONNavi.class
net.minidev.json.JSONObject.class
net.minidev.json.JSONStreamAware.class
net.minidev.json.JSONStreamAwareEx.class
net.minidev.json.JSONStyle.class
net.minidev.json.JSONUtil.class
net.minidev.json.JSONValue.class
net.minidev.json.JStylerObj.class
net.minidev.json.annotate.JsonIgnore.class
net.minidev.json.annotate.JsonSmartAnnotation.class
net.minidev.json.parser.JSONParser.class
net.minidev.json.parser.JSONParserBase.class
net.minidev.json.parser.JSONParserByteArray.class
net.minidev.json.parser.JSONParserInputStream.class
net.minidev.json.parser.JSONParserMemory.class
net.minidev.json.parser.JSONParserReader.class
net.minidev.json.parser.JSONParserStream.class
net.minidev.json.parser.JSONParserString.class
net.minidev.json.parser.ParseException.class
net.minidev.json.reader.ArrayWriter.class
net.minidev.json.reader.BeansWriter.class
net.minidev.json.reader.BeansWriterASM.class
net.minidev.json.reader.BeansWriterASMRemap.class
net.minidev.json.reader.JsonWriter.class
net.minidev.json.reader.JsonWriterI.class
net.minidev.json.writer.ArraysMapper.class
net.minidev.json.writer.BeansMapper.class
net.minidev.json.writer.CollectionMapper.class
net.minidev.json.writer.CompessorMapper.class
net.minidev.json.writer.DefaultMapper.class
net.minidev.json.writer.DefaultMapperCollection.class
net.minidev.json.writer.DefaultMapperOrdered.class
net.minidev.json.writer.FakeMapper.class
net.minidev.json.writer.JsonReader.class
net.minidev.json.writer.JsonReaderI.class
net.minidev.json.writer.MapperRemapped.class
net.minidev.json.writer.UpdaterMapper.class

Pom

json-smart-2.1.1.pom file content.

<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">
	<!-- this POM is released under an Apache 2.0 license -->
	<modelVersion>4.0.0</modelVersion>
	<artifactId>json-smart</artifactId>
	<packaging>bundle</packaging>
	<version>2.1.1</version>

	<parent>
		<groupId>net.minidev</groupId>
		<artifactId>parent</artifactId>
		<version>2.1.0</version>
		<relativePath>../parent/pom.xml</relativePath>
	</parent>

	<name>JSON Small and Fast Parser</name>

	<description>
    JSON (JavaScript Object Notation) is a lightweight data-interchange format.
    It is easy for humans to read and write. It is easy for machines to parse and generate.
    It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition
    - December 1999. JSON is a text format that is completely language independent but uses
    conventions that are familiar to programmers of the C-family of languages, including C, C++, C#,
    Java, JavaScript, Perl, Python, and many others.
    These properties make JSON an ideal data-interchange language.
  </description>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>net.minidev</groupId>
			<artifactId>asm</artifactId>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>2.3.7</version>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
						<Bundle-Name>${project.artifactId}</Bundle-Name>
						<Bundle-Version>${project.version}</Bundle-Version>
						<Export-Package>net.minidev.json,net.minidev.json.annotate,net.minidev.json.parser,net.minidev.json.serialiser,net.minidev.reader,net.minidev.json.writer</Export-Package>
						<!-- Private-Package></Private-Package -->
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>net.minidev</groupId>
   <artifactId>json-smart</artifactId>
   <version>2.1.1</version>
</dependency>

Download

If you think the following json-smart-2.1.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download json-smart-2.1.1.jar file




PreviousNext

Related