added back .travis.yml
diff --git a/examples/aria-service-proxy-plugin/.gitignore b/examples/aria-service-proxy-plugin/.gitignore
index 20b16b2..e26c3bb 100644
--- a/examples/aria-service-proxy-plugin/.gitignore
+++ b/examples/aria-service-proxy-plugin/.gitignore
@@ -3,7 +3,6 @@
 # Byte-compiled / optimized / DLL files
 __pycache__/
 *.py[cod]
-.travis.yml
 
 # C extensions
 *.so
diff --git a/examples/aria-service-proxy-plugin/.travis.yml b/examples/aria-service-proxy-plugin/.travis.yml
new file mode 100644
index 0000000..b11ed62
--- /dev/null
+++ b/examples/aria-service-proxy-plugin/.travis.yml
@@ -0,0 +1,31 @@
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+sudo: false
+language: python
+python:
+  - "2.7"
+env:
+- TOX_ENV=pylint_code
+- TOX_ENV=pylint_tests
+- TOX_ENV=py27
+- TOX_ENV=py26
+- TOX_ENV=py27e2e
+- TOX_ENV=py26e2e
+install:
+  - pip install --upgrade pip
+  - pip install --upgrade setuptools
+  - pip install tox
+script:
+  - pip --version
+  - tox --version
+  - tox -e $TOX_ENV