Update packaging for Aurora 0.14

Reviewed at https://reviews.apache.org/r/49338/
diff --git a/specs/debian/control b/specs/debian/control
index c59b67e..e4d23ba 100644
--- a/specs/debian/control
+++ b/specs/debian/control
@@ -22,7 +22,7 @@
 Depends: ${shlibs:Depends}, ${misc:Depends},
  adduser,
  openjdk-8-jre-headless | java8-runtime-headless,
- mesos (>= 0.26.0)
+ mesos (>= 0.27.2)
 Recommends: aurora-tools
 Suggests: aurora-doc
 Description: Apache Aurora scheduler
diff --git a/specs/rpm/aurora.spec b/specs/rpm/aurora.spec
index 9a7b345..7a368fd 100644
--- a/specs/rpm/aurora.spec
+++ b/specs/rpm/aurora.spec
@@ -14,7 +14,7 @@
 
 # Overridable variables;
 %if %{?!AURORA_VERSION:1}0
-%global AURORA_VERSION 0.13.0
+%global AURORA_VERSION 0.14.0
 %endif
 
 %if %{?!AURORA_INTERNAL_VERSION:1}0
@@ -42,7 +42,7 @@
 %endif
 
 %if %{?!MESOS_VERSION:1}0
-%global MESOS_VERSION 0.26.0
+%global MESOS_VERSION 0.27.2
 %endif
 
 %if %{?!PEX_BINARIES:1}0
diff --git a/test/deb/debian-jessie/README.md b/test/deb/debian-jessie/README.md
index 5d7bd03..a98407b 100644
--- a/test/deb/debian-jessie/README.md
+++ b/test/deb/debian-jessie/README.md
@@ -22,7 +22,7 @@
 ### Released
 
     vagrant ssh -- -L8081:localhost:8081 -L1338:localhost:1338
-    version=0.13.0
+    version=0.14.0
     pkg_root="https://apache.bintray.com/aurora/debian-jessie/"
     for deb in \
         aurora-scheduler_${version}_amd64.deb \
diff --git a/test/deb/debian-jessie/provision.sh b/test/deb/debian-jessie/provision.sh
index 27f8b88..ed4364f 100644
--- a/test/deb/debian-jessie/provision.sh
+++ b/test/deb/debian-jessie/provision.sh
@@ -6,8 +6,8 @@
 
 update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
 
-package=mesos_0.26.0-0.2.145.debian81_amd64.deb
-wget -c https://downloads.mesosphere.io/master/debian/8/$package
+package=mesos_0.27.2-2.0.15.debian81_amd64.deb
+wget -c http://repos.mesosphere.com/debian/pool/main/m/mesos/$package
 dpkg -i $package
 
 # NOTE: This appears to be a missing dependency of the mesos deb package and is needed
diff --git a/test/deb/ubuntu-trusty/README.md b/test/deb/ubuntu-trusty/README.md
index 054b9a4..c557985 100644
--- a/test/deb/ubuntu-trusty/README.md
+++ b/test/deb/ubuntu-trusty/README.md
@@ -22,7 +22,7 @@
 ### Released
 
     vagrant ssh -- -L8081:localhost:8081 -L1338:localhost:1338
-    version=0.13.0
+    version=0.14.0
     pkg_root="https://apache.bintray.com/aurora/ubuntu-trusty/"
     for deb in \
         aurora-scheduler_${version}_amd64.deb \
diff --git a/test/deb/ubuntu-trusty/provision.sh b/test/deb/ubuntu-trusty/provision.sh
index 2a9e9b6..5b4ec47 100644
--- a/test/deb/ubuntu-trusty/provision.sh
+++ b/test/deb/ubuntu-trusty/provision.sh
@@ -6,8 +6,8 @@
 
 update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
 
-package=mesos_0.26.0-0.2.145.ubuntu1404_amd64.deb
-wget -c https://downloads.mesosphere.io/master/ubuntu/14.04/$package
+package=mesos_0.27.2-2.0.15.ubuntu1404_amd64.deb
+wget -c http://repos.mesosphere.com/ubuntu/pool/main/m/mesos/$package
 dpkg -i $package
 
 # NOTE: This appears to be a missing dependency of the mesos deb package and is needed
diff --git a/test/rpm/centos-7/README.md b/test/rpm/centos-7/README.md
index 0e7e809..e564901 100644
--- a/test/rpm/centos-7/README.md
+++ b/test/rpm/centos-7/README.md
@@ -22,7 +22,7 @@
 ### Released
 
     vagrant ssh -- -L8081:localhost:8081 -L1338:localhost:1338
-    version=0.13.0
+    version=0.14.0
     pkg_root="https://apache.bintray.com/aurora/centos-7/"
     for rpm in \
         aurora-scheduler-${version}-1.el7.centos.aurora.x86_64.rpm \
diff --git a/test/rpm/centos-7/provision.sh b/test/rpm/centos-7/provision.sh
index e42a015..5aa88a5 100644
--- a/test/rpm/centos-7/provision.sh
+++ b/test/rpm/centos-7/provision.sh
@@ -6,7 +6,7 @@
 systemctl start zookeeper-server
 
 rpm -Uvh https://repos.mesosphere.io/el/7/noarch/RPMS/mesosphere-el-repo-7-1.noarch.rpm
-yum -y install mesos-0.26.0
+yum -y install mesos-0.27.2
 
 systemctl start mesos-master
 systemctl start mesos-slave