kryo.
Kryo is a fast and efficient object graph serialization framework for Java. The goals of the project are speed, efficiency, and an easy to use API. The project is useful any time objects need to be persisted, whether to a file, database, or over the network..
Here is the list of declaration for kryo. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.googlecode</groupId> <artifactId>kryo</artifactId> <version>1.04</version> </dependency>
If you think this Maven repository POM file listing for kryo is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD style
URL: http://www.opensource.org/licenses/bsd-license.php.
The kryo-1.04 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.7 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 272 |
The following table lists the most popular artifacts which are depending on kryo-1.04. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Social | twitter4j-core 4.0.2 A Java library for the Twitter API | 18 |
Social | twitter4j-core 3.0.3 A Java library for the Twitter API | 8 |
The following plugins are used in the kryo-1.04.jar
The following packages are defined in the kryo-1.04.jar
com.esotericsoftware.kryo com.esotericsoftware.kryo.compress com.esotericsoftware.kryo.serialize com.esotericsoftware.kryo.util
Here is the content of the POM file.
<?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.googlecode</groupId> <version>1.04</version> <artifactId>kryo</artifactId> <packaging>jar</packaging> <name>kryo</name> <description>Kryo is a fast and efficient object graph serialization framework for Java. The goals of the project are speed, efficiency, and an easy to use API. The project is useful any time objects need to be persisted, whether to a file, database, or over the network. </description> <url>http://code.google.com/p/kryo/</url> <licenses> <license> <name>BSD style</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:http://kryo.googlecode.com/svn/trunk/</connection> <url>http://code.google.com/p/kryo/source/browse/</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>3.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.googlecode</groupId> <artifactId>reflectasm</artifactId> <version>1.01</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.googlecode</groupId> <artifactId>minlog</artifactId> <version>1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <inherited>true</inherited> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>