Skip to content

Changed url to x.com #5

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

Open
wants to merge 1 commit 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
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j</artifactId>
<version>4.0.5</version>
<version>4.0.8</version>
<packaging>pom</packaging>
<name>twitter4j</name>
<description>A Java library for the Twitter API</description>
Expand All @@ -20,7 +20,7 @@
<developerConnection>scm:git:https://github.com/yusuke/twitter4j.git
</developerConnection>

<tag>4.0.5</tag>
<tag>4.0.8</tag>
</scm>
<developers>
<developer>
Expand Down
8 changes: 4 additions & 4 deletions twitter4j-appengine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-appengine</artifactId>
<version>4.0.5</version>
<version>4.0.8</version>
<packaging>jar</packaging>
<name>twitter4j-appengine</name>
<description>A Java library for the Twitter API</description>
Expand All @@ -21,7 +21,7 @@
<developerConnection>scm:https://github.com/yusuke/twitter4j.git
</developerConnection>

<tag>4.0.5</tag>
<tag>4.0.8</tag>
</scm>
<developers>
<developer>
Expand Down Expand Up @@ -138,8 +138,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>6</source>
<target>6</target>
<source>7</source>
<target>7</target>
</configuration>
<version>2.5.1</version>
</plugin>
Expand Down
4 changes: 2 additions & 2 deletions twitter4j-async/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>6</source>
<target>6</target>
<source>7</source>
<target>7</target>
</configuration>
<version>2.5.1</version>
</plugin>
Expand Down
9 changes: 5 additions & 4 deletions twitter4j-core/pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.5-CF</version>
<version>4.0.8-CF</version>
<packaging>jar</packaging>
<name>twitter4j-core</name>
<description>A Java library for the Twitter API</description>
Expand All @@ -21,7 +22,7 @@
<developerConnection>scm:https://github.com/yusuke/twitter4j.git
</developerConnection>

<tag>4.0.5</tag>
<tag>4.0.8</tag>
</scm>
<developers>
<developer>
Expand Down Expand Up @@ -166,8 +167,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>6</source>
<target>6</target>
<source>7</source>
<target>7</target>
</configuration>
<version>2.5.1</version>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ class ConfigurationBase implements Configuration, java.io.Serializable {
private String oAuth2TokenType;
private String oAuth2AccessToken;
private String oAuth2Scope;
private String oAuthRequestTokenURL = "https://api.twitter.com/oauth/request_token";
private String oAuthAuthorizationURL = "https://api.twitter.com/oauth/authorize";
private String oAuthAccessTokenURL = "https://api.twitter.com/oauth/access_token";
private String oAuthAuthenticationURL = "https://api.twitter.com/oauth/authenticate";
private String oAuth2TokenURL = "https://api.twitter.com/oauth2/token";
private String oAuth2InvalidateTokenURL = "https://api.twitter.com/oauth2/invalidate_token";
private String oAuthRequestTokenURL = "https://api.x.com/oauth/request_token";
private String oAuthAuthorizationURL = "https://api.x.com/oauth/authorize";
private String oAuthAccessTokenURL = "https://api.x.com/oauth/access_token";
private String oAuthAuthenticationURL = "https://api.x.com/oauth/authenticate";
private String oAuth2TokenURL = "https://api.x.com/oauth2/token";
private String oAuth2InvalidateTokenURL = "https://api.x.com/oauth2/invalidate_token";

private String restBaseURL = "https://api.twitter.com/1.1/";
private String streamBaseURL = "https://stream.twitter.com/1.1/";
Expand Down
4 changes: 2 additions & 2 deletions twitter4j-media-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>6</source>
<target>6</target>
<source>7</source>
<target>7</target>
</configuration>
<version>2.5.1</version>
</plugin>
Expand Down
4 changes: 2 additions & 2 deletions twitter4j-stream/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>6</source>
<target>6</target>
<source>7</source>
<target>7</target>
</configuration>
<version>2.5.1</version>
</plugin>
Expand Down