Apache Thrift.
Thrift is a software framework for scalable cross-language services development..
Here is the list of declaration for libthrift. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>0.6.1</version> </dependency>
If you think this Maven repository POM file listing for libthrift is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt".
The libthrift-0.6.1 has 6 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 |
---|---|---|
Log | slf4j-api 1.5.8 The slf4j API | 88 |
Log | slf4j-log4j12 1.5.8 The slf4j log4j-12 binding | 50 |
Data Structure | commons-lang 2.5 Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 208 |
JUnit | junit 4.4 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. | 301 |
Http | httpclient 4.0.1 HttpComponents Client (base module) | 37 |
The following packages are defined in the libthrift-0.6.1.jar
org.apache.thrift org.apache.thrift.async org.apache.thrift.meta_data org.apache.thrift.protocol org.apache.thrift.server org.apache.thrift.transport
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>0.6.1</version> <packaging>pom</packaging> <name>Apache Thrift</name> <description>Thrift is a software framework for scalable cross-language services development.</description> <url>http://thrift.apache.org</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt"</url> </license> </licenses> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/thrift/trunk/</connection> <developerConnection>scm:svn:http://svn.apache.org/repos/asf/thrift/trunk/</developerConnection> <url>http://svn.apache.org/viewcvs.cgi/thrift</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.8</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.5.8</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.0.1</version> </dependency> </dependencies> </project>