jjson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.grobmeier.json</groupId>
<artifactId>jjson</artifactId>
<version>0.1.7</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/maven-v4_0_0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>de.grobmeier.json</groupId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jjson</artifactId>
<name>jjson</name>
<version>0.1.7</version>
<description>JJSON is a pure Java lib dealing with JSON. It does not need dependencies and is easy to use.</description>
<url>http://code.grobmeier.de/jjson</url>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/grobmeier/jjson/issues</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>JJSON-Dev</name>
<post>jjson-dev@googlegroups.com</post>
<archive>http://groups.google.com/group/jjson-dev</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>grobmeier</id>
<name>Christian Grobmeier</name>
<email>grobmeier@gmail.com</email>
<url>https://www.grobmeier.de/</url>
<organization>Christian Grobmeier</organization>
<organizationUrl>https://www.grobmeier.de/</organizationUrl>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Hugh Reid</name>
<url>http://code.google.com/u/reid.hugh/</url>
</contributor>
<contributor>
<name>Aleksej Turko</name>
</contributor>
</contributors>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/grobmeier/jjson.git</connection>
<developerConnection>scm:git:git@github.com:grobmeier/jjson.git</developerConnection>
<tag>parent-7</tag>
<url>https://github.com/grobmeier/jjson</url>
</scm>
<organization>
<name>Christian Grobmeier Software</name>
<url>https://www.grobmeier.de</url>
</organization>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>org.apache.commons.lang</pattern>
<shadedPattern>de.grobmeier.jjson.shaded.org.apache.commons.lang</shadedPattern>
</relocation>
</relocations>
<minimizeJar>true</minimizeJar>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>