Skip to content

Commit 1fb463a

Browse files
committed
Move protocols module under core module
1 parent 5da5d8f commit 1fb463a

File tree

130 files changed

+15
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+15
-7
lines changed

core/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
<module>aws-core</module>
4444
<module>profiles</module>
4545
<module>regions</module>
46+
<module>protocols</module>
4647
</modules>
4748

4849
<build>

protocols/aws-cbor-protocol/pom.xml renamed to core/protocols/aws-cbor-protocol/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-cbor-protocol</artifactId>
13-
<name>AWS Java SDK :: AWS Cbor Protocol</name>
13+
<name>AWS Java SDK :: Core :: Protocols :: AWS Cbor Protocol</name>
1414
<description>The AWS SDK for Java - module holds the classes for AWS Cbor protocol
1515
</description>
1616
<url>https://aws.amazon.com/sdkforjava</url>

protocols/aws-ion-protocol/pom.xml renamed to core/protocols/aws-ion-protocol/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-ion-protocol</artifactId>
13-
<name>AWS Java SDK :: AWS Ion Protocol</name>
13+
<name>AWS Java SDK :: Core :: Protocols :: AWS Ion Protocol</name>
1414
<description>The AWS SDK for Java - module holds the classes for AWS Ion protocol
1515
</description>
1616
<url>https://aws.amazon.com/sdkforjava</url>

protocols/aws-json-protocol/pom.xml renamed to core/protocols/aws-json-protocol/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-json-protocol</artifactId>
13-
<name>AWS Java SDK :: AWS Json Protocol</name>
13+
<name>AWS Java SDK :: Core :: Protocols :: AWS Json Protocol</name>
1414
<description>The AWS SDK for Java - module holds the classes for AWS Json protocol
1515
</description>
1616
<url>https://aws.amazon.com/sdkforjava</url>

protocols/aws-query-protocol/pom.xml renamed to core/protocols/aws-query-protocol/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-query-protocol</artifactId>
13-
<name>AWS Java SDK :: AWS Query Protocol</name>
13+
<name>AWS Java SDK :: Core :: Protocols :: AWS Query Protocol</name>
1414
<description>The AWS SDK for Java - module holds the classes for AWS Query protocol
1515
</description>
1616
<url>https://aws.amazon.com/sdkforjava</url>

protocols/aws-xml-protocol/pom.xml renamed to core/protocols/aws-xml-protocol/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xml-protocol</artifactId>
13+
<name>AWS Java SDK :: Core :: Protocols :: AWS Xml Protocol</name>
14+
<description>The AWS SDK for Java - module holds the classes for AWS Xml protocol
15+
</description>
16+
<url>https://aws.amazon.com/sdkforjava</url>
1317

1418
<dependencies>
1519
<dependency>

protocols/pom.xml renamed to core/protocols/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>aws-sdk-java-pom</artifactId>
6+
<artifactId>core</artifactId>
77
<groupId>software.amazon.awssdk</groupId>
88
<version>2.0.0-preview-13-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>protocols</artifactId>
13+
<name>AWS Java SDK :: Core :: Protocols</name>
1314
<packaging>pom</packaging>
15+
<description>
16+
The AWS SDK for Java - Protocols is an umbrella module that contains child protocol modules
17+
</description>
1418
<modules>
1519
<module>aws-query-protocol</module>
1620
<module>aws-json-protocol</module>

protocols/protocol-core/pom.xml renamed to core/protocols/protocol-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>protocol-core</artifactId>
13-
<name>AWS Java SDK :: Protocol Core</name>
13+
<name>AWS Java SDK :: Core :: Protocols :: Protocol Core</name>
1414
<description>The AWS SDK for Java - module holds the core protocol classes
1515
</description>
1616
<url>https://aws.amazon.com/sdkforjava</url>

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@
7272
<module>test/codegen-generated-classes-test</module>
7373
<module>test/sdk-benchmarks</module>
7474
<module>utils</module>
75-
<module>protocols</module>
7675
<module>codegen-lite</module>
7776
<module>codegen-lite-maven-plugin</module>
7877
</modules>

0 commit comments

Comments
 (0)