Skip to content
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
11 changes: 11 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import com.mainstreethub.jenkins.pipelines.Notifier
import com.mainstreethub.jenkins.pipelines.java.library.Pipeline

def notifier = new Notifier([
steps: this,
ownerChannels: ["gps-dify-content-noti"]
])

new Pipeline(this).run([
notifier: notifier
])
38 changes: 18 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
<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">
<parent>
<groupId>com.mainstreethub</groupId>
<artifactId>parent-pom</artifactId>
<version>1.6.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j</artifactId>
<version>4.0.8-SNAPSHOT</version>
<packaging>pom</packaging>
<name>twitter4j</name>
<description>A Java library for the Twitter API</description>
<url>http://twitter4j.org/</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/yusuke/twitter4j</url>
<connection>scm:git:https://github.com/yusuke/twitter4j.git</connection>
<developerConnection>scm:git:https://github.com/yusuke/twitter4j.git
</developerConnection>

<tag>4.0.8-SNAPSHOT</tag>
</scm>
<developers>
<developer>
<id>yusuke</id>
Expand Down Expand Up @@ -75,19 +72,20 @@
</activation>
<build>
<plugins>
<!-- Override parent pom to suppress treating warnings as errors -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration combine.self="override">
<source>${java.minimum.version}</source>
<target>${java.minimum.version}</target>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
14 changes: 0 additions & 14 deletions twitter4j-core/src/main/java/twitter4j/DirectMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,6 @@ public interface DirectMessage extends TwitterResponse, EntitySupport, java.io.S
Date getCreatedAt();


/**
*
* @return quick reply options
* @since Twitter4J 4.0.7
*/
QuickReply[] getQuickReplies();

/**
*
* @return quick reply response metadata
* @since Twitter4J 4.0.7
*/
String getQuickReplyResponse();

/**
*
* @return quick reply options
Expand Down