Skip to content

Commit 8fb588a

Browse files
authored
[JENKINS-73649] Use AWS SDK for Java 2.x (#254)
1 parent 2a172e0 commit 8fb588a

File tree

4 files changed

+197
-113
lines changed

4 files changed

+197
-113
lines changed

pom.xml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.jenkins-ci.plugins</groupId>
3030
<artifactId>plugin</artifactId>
31-
<version>4.86</version>
31+
<version>4.88</version>
3232
<relativePath />
3333
</parent>
3434

@@ -54,7 +54,9 @@
5454

5555
<properties>
5656
<changelist>999999-SNAPSHOT</changelist>
57-
<jenkins.version>2.387.3</jenkins.version>
57+
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
58+
<jenkins.baseline>2.452</jenkins.baseline>
59+
<jenkins.version>${jenkins.baseline}.4</jenkins.version>
5860
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
5961
<spotbugs.effort>Max</spotbugs.effort>
6062
<spotbugs.threshold>Low</spotbugs.threshold>
@@ -65,15 +67,23 @@
6567
<dependencies>
6668
<dependency>
6769
<groupId>io.jenkins.tools.bom</groupId>
68-
<artifactId>bom-2.387.x</artifactId>
69-
<version>2543.vfb_1a_5fb_9496d</version>
70+
<artifactId>bom-${jenkins.baseline}.x</artifactId>
71+
<version>3761.vd922730f0fd2</version>
7072
<type>pom</type>
7173
<scope>import</scope>
7274
</dependency>
7375
</dependencies>
7476
</dependencyManagement>
7577

7678
<dependencies>
79+
<dependency>
80+
<groupId>io.jenkins.plugins.aws-java-sdk2</groupId>
81+
<artifactId>aws-java-sdk2-ec2</artifactId>
82+
</dependency>
83+
<dependency>
84+
<groupId>io.jenkins.plugins.aws-java-sdk2</groupId>
85+
<artifactId>aws-java-sdk2-sts</artifactId>
86+
</dependency>
7787
<dependency>
7888
<groupId>org.jenkins-ci.plugins</groupId>
7989
<artifactId>credentials</artifactId>

0 commit comments

Comments
 (0)