Skip to content

Commit 5aa8d78

Browse files
author
AWS
committed
1 parent 9ebc49d commit 5aa8d78

File tree

9 files changed

+1195
-0
lines changed

9 files changed

+1195
-0
lines changed

aws-sdk-java/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2088,6 +2088,11 @@ Amazon AutoScaling, etc).</description>
20882088
<artifactId>rtbfabric</artifactId>
20892089
<version>${awsjavasdk.version}</version>
20902090
</dependency>
2091+
<dependency>
2092+
<groupId>software.amazon.awssdk</groupId>
2093+
<artifactId>signin</artifactId>
2094+
<version>${awsjavasdk.version}</version>
2095+
</dependency>
20912096
</dependencies>
20922097
<build>
20932098
<finalName>${project.artifactId}-${project.version}</finalName>

bom/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2293,6 +2293,11 @@
22932293
<artifactId>rtbfabric</artifactId>
22942294
<version>${awsjavasdk.version}</version>
22952295
</dependency>
2296+
<dependency>
2297+
<groupId>software.amazon.awssdk</groupId>
2298+
<artifactId>signin</artifactId>
2299+
<version>${awsjavasdk.version}</version>
2300+
</dependency>
22962301
</dependencies>
22972302
</dependencyManagement>
22982303
</project>

feature.metadata

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"trebuchetFeatureArn":"arn:aws:trebuchet:::feature:v2:a1a78346-2a82-43fa-baba-807d38332305","c2jModelsRevision":53,"messageId":2,"serviceId":"Signin","serviceModule":"signin","isNewService":false}

services/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,7 @@
427427
<module>bcmrecommendedactions</module>
428428
<module>bcmdashboards</module>
429429
<module>rtbfabric</module>
430+
<module>signin</module>
430431
</modules>
431432
<description>The AWS Java SDK services</description>
432433
<url>https://aws.amazon.com/sdkforjava</url>

services/signin/pom.xml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
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+
--><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">
16+
<modelVersion>4.0.0</modelVersion>
17+
<parent>
18+
<groupId>software.amazon.awssdk</groupId>
19+
<artifactId>services</artifactId>
20+
<version>2.38.5-SNAPSHOT</version>
21+
</parent>
22+
<artifactId>signin</artifactId>
23+
<name>AWS Java SDK :: Services :: Signin</name>
24+
<description>The AWS Java SDK for Signin module holds the client classes that are used for
25+
communicating with Signin.
26+
</description>
27+
<url>https://aws.amazon.com/sdkforjava</url>
28+
<build>
29+
<plugins>
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-jar-plugin</artifactId>
33+
<configuration>
34+
<archive>
35+
<manifestEntries>
36+
<Automatic-Module-Name>software.amazon.awssdk.services.signin</Automatic-Module-Name>
37+
</manifestEntries>
38+
</archive>
39+
</configuration>
40+
</plugin>
41+
</plugins>
42+
</build>
43+
<dependencies>
44+
<dependency>
45+
<groupId>software.amazon.awssdk</groupId>
46+
<artifactId>protocol-core</artifactId>
47+
<version>${awsjavasdk.version}</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>software.amazon.awssdk</groupId>
51+
<artifactId>aws-json-protocol</artifactId>
52+
<version>${awsjavasdk.version}</version>
53+
</dependency>
54+
<dependency>
55+
<groupId>software.amazon.awssdk</groupId>
56+
<artifactId>http-auth-aws</artifactId>
57+
<version>${awsjavasdk.version}</version>
58+
</dependency>
59+
</dependencies>
60+
</project>

0 commit comments

Comments
 (0)