Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Twitter v2 streaming API support, changes in messages API #35

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ TwitterSourceConnector.properties
*.iml
/target/
.okhttpcache
.idea
278 changes: 17 additions & 261 deletions README.md

Large diffs are not rendered by default.

29 changes: 20 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@
<role>Committer</role>
</roles>
</developer>
<developer>
<id>arkadius</id>
<name>Arek Burdach</name>
<url>https://github.com/arkadius</url>
<roles>
<role>Committer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/jcustenborder/kafka-connect-twitter.git</connection>
Expand All @@ -40,19 +48,17 @@
<system>github</system>
<url>https://github.com/jcustenborder/kafka-connect-twitter/issues</url>
</issueManagement>
<properties>
<twitter4j.version>4.0.6</twitter4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>${twitter4j.version}</version>
<groupId>com.twitter</groupId>
<artifactId>twitter-api-java-sdk</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-stream</artifactId>
<version>${twitter4j.version}</version>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-avro-converter</artifactId>
<version>7.3.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
Expand All @@ -75,6 +81,11 @@
<supportSummary>Support provided through community involvement.</supportSummary>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.2</version>
</plugin>
</plugins>
</build>
</project>

This file was deleted.

Loading