You can download minimal-json-0.9.1.jar in this page.
Eclipse Public License - v 1.0
minimal-json-0.9.1.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.eclipsesource.minimal-json/minimal-json/pom.properties META-INF/maven/com.eclipsesource.minimal-json/minimal-json/pom.xml com.eclipsesource.json.JsonArray.class com.eclipsesource.json.JsonLiteral.class com.eclipsesource.json.JsonNumber.class com.eclipsesource.json.JsonObject.class com.eclipsesource.json.JsonParser.class com.eclipsesource.json.JsonString.class com.eclipsesource.json.JsonValue.class com.eclipsesource.json.JsonWriter.class com.eclipsesource.json.ParseException.class
minimal-json-0.9.1.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> <groupId>com.eclipsesource.minimal-json</groupId> <artifactId>minimal-json</artifactId> <version>0.9.1</version> <packaging>bundle</packaging> <name>minimal-json</name> <description>A Minimal JSON Parser and Writer</description> <url>https://github.com/ralfstx/minimal-json</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>1.4.0</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Bundle-Name>${project.name}</Bundle-Name> <Bundle-Version>${project.version}</Bundle-Version> <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> <Import-Package><!-- without this empty statement, a package import is added --></Import-Package> <Export-Package>com.eclipsesource.json;version="${project.version}"</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> <licenses> <license> <name>Eclipse Public License - v 1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> <distribution>manual</distribution> </license> </licenses> <scm> <url>https://github.com/ralfstx/minimal-json</url> <connection>scm:git:git@github.com:ralfstx/minimal-json.git</connection> <developerConnection>scm:git:git@github.com:ralfstx/minimal-json.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <id>rsternberg</id> <name>Ralf Sternberg</name> <email>rsternberg@eclipsesource.com</email> <organization>EclipseSource</organization> <organizationUrl>http://eclipsesource.com/</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.eclipsesource.minimal-json</groupId> <artifactId>minimal-json</artifactId> <version>0.9.1</version> </dependency>
If you think the following minimal-json-0.9.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download minimal-json-0.9.1.jar file