json-simple
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.jstuff</groupId> <artifactId>json-simple</artifactId> <version>2.1</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"> <modelVersion>4.0.0</modelVersion> <artifactId>json-simple</artifactId> <version>2.1</version> <name>Simple JSON Parser and Formatter</name> <description>Simple parser and formatter for JSON</description> <packaging>jar</packaging> <url>https://github.com/pwall567/json-simple</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> </properties> <parent> <groupId>io.jstuff</groupId> <artifactId>jstuff-maven</artifactId> <version>1.0</version> </parent> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/pwall567/json-simple.git</connection> <url>https://github.com/pwall567/json-simple.git</url> </scm> <developers> <developer> <id>pwall@pwall.net</id> <name>Peter Wall</name> <email>pwall@pwall.net</email> <url>http://pwall.net</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Australia/Sydney</timezone> </developer> </developers> <pluginRepositories> <pluginRepository> <id>central</id> <name>Maven Central</name> <url>https://repo1.maven.org/maven2/</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>io.jstuff</groupId> <artifactId>json-functions</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>io.jstuff</groupId> <artifactId>int-output</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>io.jstuff</groupId> <artifactId>textmatcher</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>io.jstuff</groupId> <artifactId>immutables</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </project>