Skip to content

Commit 064e438

Browse files
committed
Merge pull request awslabs#53 from jenkinsci/master
Add sa-east-1 region
2 parents 04b89e8 + e1bebdd commit 064e438

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</parent>
88

99
<artifactId>codedeploy</artifactId>
10-
<version>1.10-SNAPSHOT</version>
10+
<version>1.12-SNAPSHOT</version>
1111
<packaging>hpi</packaging>
1212
<groupId>com.amazonaws</groupId>
1313
<name>AWS CodeDeploy Plugin for Jenkins</name>
@@ -52,9 +52,9 @@
5252

5353
<dependencies>
5454
<dependency>
55-
<groupId>com.amazonaws</groupId>
55+
<groupId>org.jenkins-ci.plugins</groupId>
5656
<artifactId>aws-java-sdk</artifactId>
57-
<version>1.9.5</version>
57+
<version>1.10.26</version>
5858
</dependency>
5959
</dependencies>
6060

src/main/java/com/amazonaws/codedeploy/AWSCodeDeployPublisher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class AWSCodeDeployPublisher extends Publisher {
7777
public static final long DEFAULT_TIMEOUT_SECONDS = 900;
7878
public static final long DEFAULT_POLLING_FREQUENCY_SECONDS = 15;
7979
public static final String ROLE_SESSION_NAME = "jenkins-codedeploy-plugin";
80-
public static final Regions[] AVAILABLE_REGIONS = {Regions.AP_NORTHEAST_1, Regions.AP_SOUTHEAST_1, Regions.AP_SOUTHEAST_2, Regions.EU_WEST_1, Regions.US_EAST_1, Regions.US_WEST_2, Regions.EU_CENTRAL_1};
80+
public static final Regions[] AVAILABLE_REGIONS = {Regions.AP_NORTHEAST_1, Regions.AP_SOUTHEAST_1, Regions.AP_SOUTHEAST_2, Regions.EU_WEST_1, Regions.US_EAST_1, Regions.US_WEST_2, Regions.EU_CENTRAL_1, Regions.US_WEST_1, Regions.SA_EAST_1};
8181

8282
private final String s3bucket;
8383
private final String s3prefix;

0 commit comments

Comments
 (0)