rjson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.daveayan</groupId>
<artifactId>rjson</artifactId>
<version>1.11</version>
</dependency><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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.daveayan</groupId> <artifactId>rjson</artifactId> <name>rjson</name> <version>1.11</version> <packaging>jar</packaging> <description> Recursive, reflection based json to / from object conversion </description> <inceptionYear>May 2011</inceptionYear> <url>https://github.com/daveayan/rjson</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/daveayan/rjson.git</connection> <developerConnection>scm:git:git@github.com:daveayan/rjson.git</developerConnection> <url>git://github.com/daveayan/rjson.git</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>daveayan</id> <name>Ayan Dave</name> <email>daveayan@gmail.com</email> <url>http://daveayan.com</url> </developer> </developers> <dependencies> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>com.daveayan</groupId> <artifactId>mirage</artifactId> <version>1.9</version> </dependency> <dependency> <groupId>com.daveayan</groupId> <artifactId>transformers</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>