├── .gitignore ├── .travis.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .settings 2 | .classpath 3 | .project 4 | *.iml 5 | .idea 6 | target/ 7 | .DS_Store 8 | *.pyc 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/aliyun-odps-flume-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/aliyun-odps-flume-plugin/HEAD/README.md --------------------------------------------------------------------------------