Skip to content

Commit a80dbd5

Browse files
committed
iam: implement identity APIs for AWS substrate
1 parent 9066147 commit a80dbd5

File tree

5 files changed

+773
-0
lines changed

5 files changed

+773
-0
lines changed

iam/iam-aws/pom.xml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<artifactId>iam-aws</artifactId>
6+
<packaging>jar</packaging>
7+
<name>MultiCloudJ - IAM for AWS</name>
8+
9+
<parent>
10+
<groupId>com.salesforce.multicloudj</groupId>
11+
<artifactId>iam</artifactId>
12+
<version>0.2.21-SNAPSHOT</version>
13+
<relativePath>../pom.xml</relativePath>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>software.amazon.awssdk</groupId>
19+
<artifactId>iam</artifactId>
20+
<version>2.40.10</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>com.fasterxml.jackson.core</groupId>
24+
<artifactId>jackson-databind</artifactId>
25+
<version>2.17.2</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.projectlombok</groupId>
29+
<artifactId>lombok</artifactId>
30+
<version>1.18.34</version>
31+
<scope>provided</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.powermock</groupId>
35+
<artifactId>powermock-api-mockito2</artifactId>
36+
<version>2.0.9</version>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.wiremock</groupId>
41+
<artifactId>wiremock</artifactId>
42+
<version>3.12.1</version>
43+
<scope>test</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.mockito</groupId>
47+
<artifactId>mockito-core</artifactId>
48+
<version>5.16.1</version>
49+
<scope>test</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.junit.jupiter</groupId>
53+
<artifactId>junit-jupiter-api</artifactId>
54+
<version>5.12.1</version>
55+
<scope>test</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.mockito</groupId>
59+
<artifactId>mockito-junit-jupiter</artifactId>
60+
<version>5.16.1</version>
61+
<scope>test</scope>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.salesforce.multicloudj</groupId>
65+
<artifactId>multicloudj-common</artifactId>
66+
<type>test-jar</type>
67+
<scope>test</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.salesforce.multicloudj</groupId>
71+
<artifactId>iam-client</artifactId>
72+
</dependency>
73+
<dependency>
74+
<groupId>com.salesforce.multicloudj</groupId>
75+
<artifactId>iam-client</artifactId>
76+
<type>test-jar</type>
77+
<scope>test</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>com.salesforce.multicloudj</groupId>
81+
<artifactId>multicloudj-common-aws</artifactId>
82+
</dependency>
83+
</dependencies>
84+
</project>

0 commit comments

Comments
 (0)