twilio-java-sdk.
Java helper library for Twilio services.
Here is the list of declaration for twilio-java-sdk. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.twilio.sdk</groupId> <artifactId>twilio-java-sdk</artifactId> <version>3.3.9</version> </dependency>
If you think this Maven repository POM file listing for twilio-java-sdk is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT License
URL: http://www.opensource.org/licenses/mit-license.php.
The twilio-java-sdk-3.3.9 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 |
---|---|---|
Http | httpclient 4.1.2 HttpComponents Client (base module) | 87 |
Data Structure | commons-lang 2.6 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. | 407 |
JSON | json-simple 1.1 A simple Java toolkit for JSON | 150 |
JSON | jackson-mapper-asl 1.9.3 Data Mapper package is a high-performance data binding package built on Jackson JSON processor | 18 |
JUnit | junit 4.8.1 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. | 1256 |
The following plugins are used in the twilio-java-sdk-3.3.9.jar
The following packages are defined in the twilio-java-sdk-3.3.9.jar
com.twilio.sdk com.twilio.sdk.client com.twilio.sdk.examples com.twilio.sdk.parser com.twilio.sdk.resource com.twilio.sdk.resource.factory com.twilio.sdk.resource.instance com.twilio.sdk.resource.list com.twilio.sdk.verbs
Here is the content of the POM file.
<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>com.twilio.sdk</groupId> <artifactId>twilio-java-sdk</artifactId> <packaging>jar</packaging> <name>twilio-java-sdk</name> <version>3.3.9</version> <description>Java helper library for Twilio services</description> <url>http://www.twilio.com</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>git@github.com:twilio/twilio-java.git</url> <connection>scm:git:git@github.com:twilio/twilio-java.git</connection> <developerConnection>scm:git:git@github.com:twilio/twilio-java.git</developerConnection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.3</version> <scope>compile</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <show>public</show> <nohelp>true</nohelp> <author>true</author> <version>true</version> <use>true</use> <windowtitle>Twilio Java</windowtitle> <doctitle><![CDATA[<h1>Twilio Java</h1>]]></doctitle> <bottom><![CDATA[<i>Copyright © 2011 Twilio, Inc. All Rights Reserved.</i>]]></bottom> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.2</version> <configuration> <formats> <format>xml</format> </formats> </configuration> </plugin> </plugins> </build> <!-- Sonatype repo submission stuff --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> </project>