Updating .gitignore and pom.xml to support mkdocs and markdown
Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/commit/7b1a757b Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/tree/7b1a757b Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/diff/7b1a757b Branch: refs/heads/devel-3 Commit: 7b1a757be433465f7b354614581501f590a8a6f6 Parents: d3a7063 Author: sashadt <[email protected]> Authored: Wed Mar 9 23:53:32 2016 -0800 Committer: sashadt <[email protected]> Committed: Wed Mar 9 23:53:32 2016 -0800 ---------------------------------------------------------------------- .gitignore | 1 + pom.xml | 3 +++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/7b1a757b/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index b6ecf7e..541471a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ target/ npm-debug.log nb-configuration.xml hadoop.log +site/ \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/7b1a757b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0adeb20..249a8da 100644 --- a/pom.xml +++ b/pom.xml @@ -67,6 +67,8 @@ <exclude>**/src/main/resources/com/datatorrent/apps/logstream/**</exclude> <exclude>src/main/c/zmq_push/Makefile</exclude> <exclude>src/test/resources/com/datatorrent/contrib/romesyndication/*.rss</exclude> + <exclude>**/*.md</exclude> + <exclude>**/*.yml</exclude> </excludes> <mapping combine.children="append"> <R>SCRIPT_STYLE</R> @@ -87,6 +89,7 @@ <exclude>src/main/resources/**/*.txt</exclude> <exclude>**/*.json</exclude> <exclude>**/*.md</exclude> + <exclude>**/*.yml</exclude> </excludes> </configuration> </plugin>
