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.9.0</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.9.0 has 5 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 |
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 |
Http | httpclient 4.1.3 HttpComponents Client (base module) | 62 |
Http | httpcore 4.1.3 HttpComponents Core (blocking I/O) | 21 |
The following table lists the most popular artifacts which are depending on libthrift-0.9.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JEE | libfb303 0.9.0 Thrift is a software framework for scalable cross-language services development. | 10 |
The following packages are defined in the libthrift-0.9.0.jar
org.apache.thrift org.apache.thrift.async org.apache.thrift.meta_data org.apache.thrift.protocol org.apache.thrift.scheme 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.9.0</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>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.1.3</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.1.3</version> </dependency> </dependencies> </project>