facebook-graph-api-wrapper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.sprucehill</groupId> <artifactId>facebook-graph-api-wrapper</artifactId> <version>0.4.0</version> </dependency>
<?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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.sprucehill</groupId> <artifactId>facebook-graph-api-wrapper</artifactId> <version>0.4.0</version> <name>Facebook Graph API Wrapper</name> <url>https://github.com/SpruceHillio/facebook-graph-api-wrapper</url> <organization> <name>SpruceHill.io GmbH</name> <url>http://sprucehill.io</url> </organization> <issueManagement> <url>https://github.com/SpruceHillio/facebook-graph-api-wrapper/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <url>https://github.com/SpruceHillio/facebook-graph-api-wrapper.git</url> <connection>scm:git:git://github.com/SpruceHillio/facebook-graph-api-wrapper.git</connection> <developerConnection>scm:git:git://github.com/SpruceHillio/facebook-graph-api-wrapper.git</developerConnection> </scm> <licenses> <license> <name>Apache Licence, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <developers> <developer> <name>Michael Duergner</name> <email>michael@sprucehill.io</email> <organization>SpruceHill.io GmbH</organization> <organizationUrl>http://sprucehill.io</organizationUrl> <url>https://github.com/duergner</url> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${version.maven-compiler-plugin}</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.maven-source-plugin}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.httpclient>4.2.1</version.httpclient> <version.slf4j>1.6.4</version.slf4j> <version.jackson>2.0.2</version.jackson> <version.maven-compiler-plugin>3.0</version.maven-compiler-plugin> <version.maven-source-plugin>2.2.1</version.maven-source-plugin> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${version.httpclient}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.slf4j}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${version.jackson}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${version.jackson}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${version.jackson}</version> </dependency> </dependencies> </dependencyManagement> </project>