twittered
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.redouane59.twitter</groupId>
<artifactId>twittered</artifactId>
<version>2.23</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>twittered</artifactId>
<build>
<plugins>
<plugin>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<append>true</append>
<excludes>
<exclude>target/**</exclude>
</excludes>
<output>file</output>
<skip>${maven.test.skip}</skip>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
<id>jacoco-initialize</id>
</execution>
<execution>
<goals>
<goal>report</goal>
</goals>
<id>jacoco-site</id>
<phase>verify</phase>
</execution>
</executions>
<groupId>org.jacoco</groupId>
<version>0.8.6</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>3.0.0-M4</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
<id>attach-sources</id>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>2.2.1</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>8</source>
</configuration>
<executions>
<execution>
<configuration>
<failOnError>false</failOnError>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
<goals>
<goal>jar</goal>
</goals>
<id>attach-javadocs</id>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>3.2.0</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<artifactId>sonar-packaging-maven-plugin</artifactId>
<groupId>org.codehaus.sonar</groupId>
<type>maven-plugin</type>
<version>1.13</version>
</dependency>
<dependency>
<artifactId>jackson-databind</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
<version>2.13.4.2</version>
</dependency>
<dependency>
<artifactId>jackson-datatype-jsr310</artifactId>
<groupId>com.fasterxml.jackson.datatype</groupId>
<version>2.13.2</version>
</dependency>
<dependency>
<artifactId>jackson-dataformat-yaml</artifactId>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<version>2.13.2</version>
</dependency>
<dependency>
<artifactId>lombok</artifactId>
<groupId>org.projectlombok</groupId>
<scope>provided</scope>
<version>1.18.22</version>
</dependency>
<dependency>
<artifactId>scribejava-apis</artifactId>
<exclusions>
<!-- we include our own version -->
<exclusion>
<artifactId>jackson-databind</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
</exclusions>
<groupId>com.github.scribejava</groupId>
<version>8.3.1</version>
</dependency>
<dependency>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
<version>1.7.36</version>
</dependency>
<dependency>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
<version>4.5.13</version>
</dependency>
<dependency>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
<scope>test</scope>
<version>5.8.2</version>
</dependency>
<dependency>
<artifactId>junit-jupiter-params</artifactId>
<groupId>org.junit.jupiter</groupId>
<scope>test</scope>
<version>5.8.2</version>
</dependency>
<dependency>
<artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId>
<scope>test</scope>
<version>1.2.11</version>
</dependency>
</dependencies>
<description>Java Client for the Twitter API</description>
<developers>
<developer>
<email>bali.redouane@gmail.com</email>
<name>Redouane Bali</name>
<organization>Redouane59</organization>
<organizationUrl>https://github.com/Redouane59</organizationUrl>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<groupId>io.github.redouane59.twitter</groupId>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<modelVersion>4.0.0</modelVersion>
<name>twittered</name>
<properties>
<appengine-maven-plugin-version>1.3.2</appengine-maven-plugin-version>
<appengine.app.version>1</appengine.app.version>
<appengine.target.version>1.9.71</appengine.target.version>
<java.version>1.8</java.version>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml
</sonar.coverage.jacoco.xmlReportPaths>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.login>4a9a081c5fcd7861bf9fc84032a4bc9de08ae733</sonar.login>
<sonar.organization>redouane59</sonar.organization>
<sonar.projectKey>redouane59_twittered</sonar.projectKey>
</properties>
<scm>
<connection>scm:git:git://github.com/Redouane59/twittered.git</connection>
<developerConnection>scm:git:ssh://github.com:Redouane59/twittered.git
</developerConnection>
<url>https://github.com/Redouane59/twittered</url>
</scm>
<url>https://github.com/Redouane59/twittered</url>
<version>2.23</version>
</project>