twitter4j-twitter-client
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.fjobilabs.botometer</groupId> <artifactId>twitter4j-twitter-client</artifactId> <version>0.1.1</version> </dependency>
<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> <parent> <groupId>de.fjobilabs.botometer</groupId> <artifactId>botometer-java-parent</artifactId> <version>0.1.1</version> </parent> <artifactId>twitter4j-twitter-client</artifactId> <name>Twitter4J Twitter Client</name> <description>TwitterClient implementation for botometer-api backed by Twitter4J</description> <url>https://github.com/fxjordan/botometer-java</url> <properties> <!-- Botometer Java dependecy versions --> <botometer-api.version>0.1.1</botometer-api.version> <!-- Third party dependecy versions --> <twitter4j.version>4.0.7</twitter4j.version> <slf4j.version>1.7.26</slf4j.version> </properties> <dependencies> <dependency> <groupId>de.fjobilabs.botometer</groupId> <artifactId>botometer-api</artifactId> <version>${botometer-api.version}</version> </dependency> <dependency> <groupId>org.twitter4j</groupId> <artifactId>twitter4j-core</artifactId> <version>${twitter4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> <version>2.1.2</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>false</failOnError> </configuration> </execution> </executions> <configuration> <charset>UTF-8</charset> <show>public</show> </configuration> <version>2.10.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> <version>2.5</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-surefire-provider</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.2.0</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>