Skip to content

Commit 5db07c8

Browse files
authored
Module changes for Identity & Auth (#3764)
* Add new Identity and Authentication modules These modules are empty for now. * Update Identity & Auth module dependencies * Add temporary Placeholder class So there is a jar created for the module. * Temporarily not fail maven-dependency-plugin Currently have setup dependencies in maven but there is not actual code dependencies across these modules. Once new code is added to the modules this will be undone. * Removed some answered TODOs
1 parent d1f46a6 commit 5db07c8

File tree

17 files changed

+445
-2
lines changed

17 files changed

+445
-2
lines changed

core/auth-crt/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@
6262
<artifactId>auth</artifactId>
6363
<version>${awsjavasdk.version}</version>
6464
</dependency>
65+
<dependency>
66+
<groupId>software.amazon.awssdk</groupId>
67+
<artifactId>http-auth-aws-crt</artifactId>
68+
<version>${awsjavasdk.version}</version>
69+
</dependency>
6570
<dependency>
6671
<groupId>software.amazon.awssdk.crt</groupId>
6772
<artifactId>aws-crt</artifactId>

core/auth/pom.xml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
<artifactId>auth</artifactId>
2929
<name>AWS Java SDK :: Auth</name>
3030
<description>
31-
The AWS SDK for Java - Auth module holds the classes that are used for authentication with AWS services
31+
The AWS SDK for Java - Auth module holds the classes that are used for authentication with services
3232
</description>
3333
<url>https://aws.amazon.com/sdkforjava</url>
34+
3435
<dependencies>
3536
<dependency>
3637
<groupId>software.amazon.awssdk</groupId>
@@ -47,6 +48,31 @@
4748
<artifactId>sdk-core</artifactId>
4849
<version>${awsjavasdk.version}</version>
4950
</dependency>
51+
<dependency>
52+
<groupId>software.amazon.awssdk</groupId>
53+
<artifactId>identity-spi</artifactId>
54+
<version>${awsjavasdk.version}</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>software.amazon.awssdk</groupId>
58+
<artifactId>http-auth-spi</artifactId>
59+
<version>${awsjavasdk.version}</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>software.amazon.awssdk</groupId>
63+
<artifactId>http-auth</artifactId>
64+
<version>${awsjavasdk.version}</version>
65+
</dependency>
66+
<dependency>
67+
<groupId>software.amazon.awssdk</groupId>
68+
<artifactId>http-auth-event-stream</artifactId>
69+
<version>${awsjavasdk.version}</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>software.amazon.awssdk</groupId>
73+
<artifactId>utils</artifactId>
74+
<version>${awsjavasdk.version}</version>
75+
</dependency>
5076
<dependency>
5177
<groupId>software.amazon.awssdk</groupId>
5278
<artifactId>regions</artifactId>

core/http-auth-aws-crt/pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License").
6+
~ You may not use this file except in compliance with the License.
7+
~ A copy of the License is located at
8+
~
9+
~ http://aws.amazon.com/apache2.0
10+
~
11+
~ or in the "license" file accompanying this file. This file is distributed
12+
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13+
~ express or implied. See the License for the specific language governing
14+
~ permissions and limitations under the License.
15+
-->
16+
17+
<project xmlns="http://maven.apache.org/POM/4.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>software.amazon.awssdk</groupId>
24+
<artifactId>core</artifactId>
25+
<version>2.20.2-SNAPSHOT</version>
26+
</parent>
27+
28+
<artifactId>http-auth-aws-crt</artifactId>
29+
<name>AWS Java SDK :: HTTP Auth AWS CRT</name>
30+
<description>
31+
The AWS SDK for Java - Auth module holds the AWS Common Runtime based implementations that are used for
32+
authentication with HTTP services
33+
</description>
34+
<url>https://aws.amazon.com/sdkforjava</url>
35+
36+
<dependencies>
37+
<dependency>
38+
<groupId>software.amazon.awssdk</groupId>
39+
<artifactId>http-auth-spi</artifactId>
40+
<version>${awsjavasdk.version}</version>
41+
</dependency>
42+
</dependencies>
43+
</project>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
16+
package software.amazon.awssdk.http.auth.aws.crt;
17+
18+
import software.amazon.awssdk.annotations.SdkInternalApi;
19+
20+
// TODO: Remove when where is actual code in this module
21+
@SdkInternalApi
22+
public interface Placeholder {
23+
}

core/http-auth-aws/pom.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License").
6+
~ You may not use this file except in compliance with the License.
7+
~ A copy of the License is located at
8+
~
9+
~ http://aws.amazon.com/apache2.0
10+
~
11+
~ or in the "license" file accompanying this file. This file is distributed
12+
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13+
~ express or implied. See the License for the specific language governing
14+
~ permissions and limitations under the License.
15+
-->
16+
17+
<project xmlns="http://maven.apache.org/POM/4.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>software.amazon.awssdk</groupId>
24+
<artifactId>core</artifactId>
25+
<version>2.20.2-SNAPSHOT</version>
26+
</parent>
27+
28+
<artifactId>http-auth-aws</artifactId>
29+
<name>AWS Java SDK :: HTTP Auth AWS</name>
30+
<description>
31+
The AWS SDK for Java - Auth module holds the classes that are used for authentication with AWS services
32+
</description>
33+
<url>https://aws.amazon.com/sdkforjava</url>
34+
35+
<dependencies>
36+
<dependency>
37+
<groupId>software.amazon.awssdk</groupId>
38+
<artifactId>http-auth-spi</artifactId>
39+
<version>${awsjavasdk.version}</version>
40+
</dependency>
41+
</dependencies>
42+
</project>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
16+
package software.amazon.awssdk.http.auth.aws;
17+
18+
import software.amazon.awssdk.annotations.SdkInternalApi;
19+
20+
// TODO: Remove when where is actual code in this module
21+
@SdkInternalApi
22+
public interface Placeholder {
23+
}

core/http-auth-event-stream/pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License").
6+
~ You may not use this file except in compliance with the License.
7+
~ A copy of the License is located at
8+
~
9+
~ http://aws.amazon.com/apache2.0
10+
~
11+
~ or in the "license" file accompanying this file. This file is distributed
12+
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13+
~ express or implied. See the License for the specific language governing
14+
~ permissions and limitations under the License.
15+
-->
16+
17+
<project xmlns="http://maven.apache.org/POM/4.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>software.amazon.awssdk</groupId>
24+
<artifactId>core</artifactId>
25+
<version>2.20.2-SNAPSHOT</version>
26+
</parent>
27+
28+
<artifactId>http-auth-event-stream</artifactId>
29+
<name>AWS Java SDK :: HTTP Auth Event Stream</name>
30+
<description>
31+
The AWS SDK for Java - HTTP Auth Even Stream module holds the classes that are used for authentication of
32+
event streams in HTTP services
33+
</description>
34+
<url>https://aws.amazon.com/sdkforjava</url>
35+
36+
<dependencies>
37+
<dependency>
38+
<groupId>software.amazon.awssdk</groupId>
39+
<artifactId>http-auth-spi</artifactId>
40+
<version>${awsjavasdk.version}</version>
41+
</dependency>
42+
</dependencies>
43+
</project>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
16+
package software.amazon.awssdk.http.auth.eventstream;
17+
18+
import software.amazon.awssdk.annotations.SdkInternalApi;
19+
20+
// TODO: Remove when where is actual code in this module
21+
@SdkInternalApi
22+
public interface Placeholder {
23+
}

core/http-auth-spi/pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License").
6+
~ You may not use this file except in compliance with the License.
7+
~ A copy of the License is located at
8+
~
9+
~ http://aws.amazon.com/apache2.0
10+
~
11+
~ or in the "license" file accompanying this file. This file is distributed
12+
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13+
~ express or implied. See the License for the specific language governing
14+
~ permissions and limitations under the License.
15+
-->
16+
17+
<project xmlns="http://maven.apache.org/POM/4.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>software.amazon.awssdk</groupId>
24+
<artifactId>core</artifactId>
25+
<version>2.20.2-SNAPSHOT</version>
26+
</parent>
27+
28+
<artifactId>http-auth-spi</artifactId>
29+
<name>AWS Java SDK :: HTTP Auth SPI</name>
30+
<description>
31+
The AWS SDK for Java - HTTP Auth SPI module contains the interfaces for authentication that are used by other
32+
modules in the library.
33+
</description>
34+
<url>https://aws.amazon.com/sdkforjava</url>
35+
36+
<dependencies>
37+
<dependency>
38+
<groupId>software.amazon.awssdk</groupId>
39+
<artifactId>identity-spi</artifactId>
40+
<version>${awsjavasdk.version}</version>
41+
</dependency>
42+
</dependencies>
43+
</project>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
16+
package software.amazon.awssdk.http.auth.spi;
17+
18+
import software.amazon.awssdk.annotations.SdkInternalApi;
19+
20+
// TODO: Remove when where is actual code in this module
21+
@SdkInternalApi
22+
public interface Placeholder {
23+
}

core/http-auth/pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License").
6+
~ You may not use this file except in compliance with the License.
7+
~ A copy of the License is located at
8+
~
9+
~ http://aws.amazon.com/apache2.0
10+
~
11+
~ or in the "license" file accompanying this file. This file is distributed
12+
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13+
~ express or implied. See the License for the specific language governing
14+
~ permissions and limitations under the License.
15+
-->
16+
17+
<project xmlns="http://maven.apache.org/POM/4.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>software.amazon.awssdk</groupId>
24+
<artifactId>core</artifactId>
25+
<version>2.20.2-SNAPSHOT</version>
26+
</parent>
27+
28+
<artifactId>http-auth</artifactId>
29+
<name>AWS Java SDK :: HTTP Auth</name>
30+
<description>
31+
The AWS SDK for Java - HTTP Auth module holds the classes that are used for authentication with generic HTTP
32+
services
33+
</description>
34+
<url>https://aws.amazon.com/sdkforjava</url>
35+
36+
<dependencies>
37+
<dependency>
38+
<groupId>software.amazon.awssdk</groupId>
39+
<artifactId>http-auth-spi</artifactId>
40+
<version>${awsjavasdk.version}</version>
41+
</dependency>
42+
</dependencies>
43+
</project>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
16+
package software.amazon.awssdk.http.auth;
17+
18+
import software.amazon.awssdk.annotations.SdkInternalApi;
19+
20+
// TODO: Remove when where is actual code in this module
21+
@SdkInternalApi
22+
public interface Placeholder {
23+
}

0 commit comments

Comments
 (0)