How can I add the Twitter4j core jar file as a Maven dependency in my project please? I am using eclipse Java.
Asked
Active
Viewed 166 times
0
-
It's the first hit if you search it here: https://mvnrepository.com/ – howlger Apr 22 '20 at 15:55
1 Answers
1
Add the following dependency in the pom.xml file.
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.7</version>
</dependency>

Giancarlo Romeo
- 663
- 1
- 9
- 24