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
35 changes: 34 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>pom</packaging>
<name>twitter4j</name>
<description>A Java library for the Twitter API</description>
Expand Down Expand Up @@ -55,6 +55,39 @@
<url>http://nexus.int.sproutsocial.com:8081/nexus/content/repositories/releases</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>sproutsocial-us-releases</id>
<url>https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<profiles>
<profile>
<id>release-sign-artifacts</id>
Expand Down
21 changes: 19 additions & 2 deletions twitter4j-appengine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-appengine</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>jar</packaging>
<name>twitter4j-appengine</name>
<description>A Java library for the Twitter API</description>
Expand Down Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>com.google.appengine</groupId>
Expand Down Expand Up @@ -192,6 +192,23 @@
</configuration>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down
21 changes: 19 additions & 2 deletions twitter4j-async/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-async</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>jar</packaging>
<name>twitter4j-async</name>
<description>A Java library for the Twitter API</description>
Expand Down Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -176,6 +176,23 @@
</configuration>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down
19 changes: 18 additions & 1 deletion twitter4j-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>jar</packaging>
<name>twitter4j-core</name>
<description>A Java library for the Twitter API</description>
Expand Down Expand Up @@ -220,6 +220,23 @@
</configuration>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down
27 changes: 22 additions & 5 deletions twitter4j-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-examples</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>jar</packaging>
<name>twitter4j-examples</name>
<description>A Java library for the Twitter API</description>
Expand Down Expand Up @@ -89,22 +89,22 @@
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-async</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-stream</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-media-support</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -191,6 +191,23 @@
</configuration>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down
21 changes: 19 additions & 2 deletions twitter4j-http2-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-http2-support</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>jar</packaging>
<name>twitter4j-http2-support</name>
<description>A Java library for the Twitter API</description>
Expand Down Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
Expand Down Expand Up @@ -196,6 +196,23 @@
</configuration>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down
21 changes: 19 additions & 2 deletions twitter4j-media-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-media-support</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>jar</packaging>
<name>twitter4j-media-support</name>
<description>Twitter4J optional component adds multimedia support
Expand Down Expand Up @@ -90,7 +90,7 @@
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -172,6 +172,23 @@
</configuration>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down
23 changes: 20 additions & 3 deletions twitter4j-stream/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-stream</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<packaging>jar</packaging>
<name>twitter4j-stream</name>
<description>A Java library for the Twitter API</description>
Expand Down Expand Up @@ -89,12 +89,12 @@
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
</dependency>
<dependency>
<groupId>com.sproutsocial.org.twitter4j</groupId>
<artifactId>twitter4j-async</artifactId>
<version>4.0.6-dmevents</version>
<version>4.1.0-dmevents</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -188,6 +188,23 @@
</configuration>
<version>2.4.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>us-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<altDeploymentRepository>sproutsocial-us-releases::https://sproutsocial-412335208158.d.codeartifact.us-east-1.amazonaws.com/maven/mvn_releases/</altDeploymentRepository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down