Download minimal-json-0.9.4.jar file

Introduction

You can download minimal-json-0.9.4.jar in this page.

License

Eclipse Public License - v 1.0

Type List

minimal-json-0.9.4.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.Json.class
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
com.eclipsesource.json.PrettyPrint.class
com.eclipsesource.json.WriterConfig.class
com.eclipsesource.json.WritingBuffer.class

Pom

minimal-json-0.9.4.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.4</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.2</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>animal-sniffer-maven-plugin</artifactId>
        <version>1.13</version>
        <configuration>
          <signature>
            <groupId>org.codehaus.mojo.signature</groupId>
            <artifactId>java15</artifactId>
            <version>1.0</version>
          </signature>
        </configuration>
        <executions>
          <execution>
            <id>ensure-java-1.5-class-library</id>
            <phase>test</phase>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.4</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.10.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>MIT License</name>
      <url>http://opensource.org/licenses/MIT</url>
      <distribution>repo</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>0.9.4</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.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.10.19</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>

POM Entry

<dependency>
   <groupId>com.eclipsesource.minimal-json</groupId>
   <artifactId>minimal-json</artifactId>
   <version>0.9.4</version>
</dependency>

Download

If you think the following minimal-json-0.9.4.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.4.jar file




PreviousNext

Related