Created
December 14, 2010 10:54
-
-
Save ussy/740268 to your computer and use it in GitHub Desktop.
JSON Performance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>sandbox</groupId> | |
<artifactId>sandbox</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>sandbox</name> | |
<repositories> | |
<repository> | |
<id>maven2-repository.dev.java.net</id> | |
<name>Java.net Repository for Maven</name> | |
<url>http://download.java.net/maven/2/</url> | |
</repository> | |
<repository> | |
<id>maven.seasar.org</id> | |
<name>The Seasar Foundation Maven2 Repository</name> | |
<url>http://maven.seasar.org/maven2</url> | |
</repository> | |
<repository> | |
<id>gson</id> | |
<url>http://google-gson.googlecode.com/svn/mavenrepo</url> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-jaxrs</artifactId> | |
<version>1.6.3</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.code.gson</groupId> | |
<artifactId>gson</artifactId> | |
<version>1.6</version> | |
</dependency> | |
<dependency> | |
<groupId>net.arnx.jsonic</groupId> | |
<artifactId>jsonic</artifactId> | |
<version>1.2.0</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<configuration> | |
<encoding>UTF-8</encoding> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<artifactId>maven-eclipse-plugin</artifactId> | |
<configuration> | |
<wtpversion>2.0</wtpversion> | |
<downloadSources>true</downloadSources> | |
<downloadJavadocs>true</downloadJavadocs> | |
<additionalConfig> | |
<file> | |
<name> | |
.settings/org.eclipse.core.resources.prefs | |
</name> | |
<content> | |
<![CDATA[ | |
eclipse.preferences.version=1 | |
encoding/<project>=UTF-8 | |
]]> | |
</content> | |
</file> | |
<file> | |
<name> | |
.settings/org.eclipse.core.runtime.prefs | |
</name> | |
<content> | |
<![CDATA[ | |
eclipse.preferences.version=1 | |
line.separator=\n | |
]]> | |
</content> | |
</file> | |
</additionalConfig> | |
</configuration> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
<plugins> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment