diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt
index bc945854e9..d73bf9a120 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -129,6 +129,8 @@ Trunk (Unreleased)
HADOOP-11041. VersionInfo specifies subversion (Tsuyoshi OZAWA via aw)
+ HADOOP-10373 create tools/hadoop-amazon for aws/EMR support (stevel)
+
BUG FIXES
HADOOP-9451. Fault single-layer config if node group topology is enabled.
diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
index f48b092bdf..76448cfcad 100644
--- a/hadoop-project/pom.xml
+++ b/hadoop-project/pom.xml
@@ -572,6 +572,11 @@
jets3t
0.9.0
+
+ com.amazonaws
+ aws-java-sdk
+ 1.7.2
+
org.apache.mina
mina-core
diff --git a/hadoop-tools/hadoop-aws/dev-support/findbugs-exclude.xml b/hadoop-tools/hadoop-aws/dev-support/findbugs-exclude.xml
new file mode 100644
index 0000000000..74e4923bf7
--- /dev/null
+++ b/hadoop-tools/hadoop-aws/dev-support/findbugs-exclude.xml
@@ -0,0 +1,19 @@
+
+
+
+
diff --git a/hadoop-tools/hadoop-aws/pom.xml b/hadoop-tools/hadoop-aws/pom.xml
new file mode 100644
index 0000000000..c01a33ddd4
--- /dev/null
+++ b/hadoop-tools/hadoop-aws/pom.xml
@@ -0,0 +1,116 @@
+
+
+
+ 4.0.0
+
+ org.apache.hadoop
+ hadoop-project
+ 3.0.0-SNAPSHOT
+ ../../hadoop-project
+
+ hadoop-aws
+ 3.0.0-SNAPSHOT
+ Apache Hadoop Amazon Web Services support
+
+ This module contains code to support integration with Amazon Web Services.
+ It also declares the dependencies needed to work with AWS services.
+
+ jar
+
+
+ UTF-8
+ true
+
+
+
+
+ tests-off
+
+
+ src/test/resources/auth-keys.xml
+
+
+
+ true
+
+
+
+ tests-on
+
+
+ src/test/resources/auth-keys.xml
+
+
+
+ false
+
+
+
+
+
+
+
+
+ org.codehaus.mojo
+ findbugs-maven-plugin
+
+ true
+ true
+ ${basedir}/dev-support/findbugs-exclude.xml
+
+ Max
+
+
+
+ org.apache.maven.plugins
+ maven-project-info-reports-plugin
+
+ false
+ false
+
+
+
+
+
+
+
+ org.apache.hadoop
+ hadoop-common
+ compile
+
+
+
+ org.apache.hadoop
+ hadoop-common
+ compile
+ test-jar
+
+
+
+ com.amazonaws
+ aws-java-sdk
+ compile
+
+
+
+ junit
+ junit
+ test
+
+
+
+
diff --git a/hadoop-tools/pom.xml b/hadoop-tools/pom.xml
index bed0f9b6a9..25f06e0405 100644
--- a/hadoop-tools/pom.xml
+++ b/hadoop-tools/pom.xml
@@ -43,6 +43,7 @@
hadoop-openstack
hadoop-sls
hadoop-azure
+ hadoop-aws