Skip to content

Move protocols module under core module #785

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<module>aws-core</module>
<module>profiles</module>
<module>regions</module>
<module>protocols</module>
</modules>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>aws-cbor-protocol</artifactId>
<name>AWS Java SDK :: AWS Cbor Protocol</name>
<name>AWS Java SDK :: Core :: Protocols :: AWS Cbor Protocol</name>
<description>The AWS SDK for Java - module holds the classes for AWS Cbor protocol
</description>
<url>https://aws.amazon.com/sdkforjava</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>aws-ion-protocol</artifactId>
<name>AWS Java SDK :: AWS Ion Protocol</name>
<name>AWS Java SDK :: Core :: Protocols :: AWS Ion Protocol</name>
<description>The AWS SDK for Java - module holds the classes for AWS Ion protocol
</description>
<url>https://aws.amazon.com/sdkforjava</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>aws-json-protocol</artifactId>
<name>AWS Java SDK :: AWS Json Protocol</name>
<name>AWS Java SDK :: Core :: Protocols :: AWS Json Protocol</name>
<description>The AWS SDK for Java - module holds the classes for AWS Json protocol
</description>
<url>https://aws.amazon.com/sdkforjava</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>aws-query-protocol</artifactId>
<name>AWS Java SDK :: AWS Query Protocol</name>
<name>AWS Java SDK :: Core :: Protocols :: AWS Query Protocol</name>
<description>The AWS SDK for Java - module holds the classes for AWS Query protocol
</description>
<url>https://aws.amazon.com/sdkforjava</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
<modelVersion>4.0.0</modelVersion>

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

<dependencies>
<dependency>
Expand Down
6 changes: 5 additions & 1 deletion protocols/pom.xml → core/protocols/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@
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">
<parent>
<artifactId>aws-sdk-java-pom</artifactId>
<artifactId>core</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.0.0-preview-13-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>protocols</artifactId>
<name>AWS Java SDK :: Core :: Protocols</name>
<packaging>pom</packaging>
<description>
The AWS SDK for Java - Protocols is an umbrella module that contains child protocol modules
</description>
<modules>
<module>aws-query-protocol</module>
<module>aws-json-protocol</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>protocol-core</artifactId>
<name>AWS Java SDK :: Protocol Core</name>
<name>AWS Java SDK :: Core :: Protocols :: Protocol Core</name>
<description>The AWS SDK for Java - module holds the core protocol classes
</description>
<url>https://aws.amazon.com/sdkforjava</url>
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
<module>test/codegen-generated-classes-test</module>
<module>test/sdk-benchmarks</module>
<module>utils</module>
<module>protocols</module>
<module>codegen-lite</module>
<module>codegen-lite-maven-plugin</module>
</modules>
Expand Down