switch reference configs to HOCON, add license header
Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/8020e5f7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/8020e5f7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/8020e5f7 Branch: refs/heads/0.2-incubating-rc3 Commit: 8020e5f7d06a6d32ad90d31301b175d0a61a041a Parents: 161fe59 Author: Steve Blackmon <[email protected]> Authored: Sat Apr 18 18:05:13 2015 -0500 Committer: Steve Blackmon <[email protected]> Committed: Sat Apr 18 18:05:13 2015 -0500 ---------------------------------------------------------------------- .../src/main/resources/reference.conf | 9 +++++++++ .../src/main/resources/reference.json | 9 --------- .../streams-persist-mongo/src/main/resources/reference.conf | 8 ++++++++ .../streams-persist-mongo/src/main/resources/reference.json | 8 -------- 4 files changed, 17 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/8020e5f7/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.conf ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.conf b/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.conf new file mode 100644 index 0000000..d67d437 --- /dev/null +++ b/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.conf @@ -0,0 +1,9 @@ +# Apache Streams (incubating) +# Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 +"elasticsearch": { + "hosts": [ + "localhost" + ], + "port": 9300, + "clusterName": "elasticsearch" +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/8020e5f7/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.json ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.json b/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.json deleted file mode 100644 index 408399c..0000000 --- a/streams-contrib/streams-persist-elasticsearch/src/main/resources/reference.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "elasticsearch": { - "hosts": [ - "localhost" - ], - "port": 9300, - "clusterName": "elasticsearch" - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/8020e5f7/streams-contrib/streams-persist-mongo/src/main/resources/reference.conf ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-persist-mongo/src/main/resources/reference.conf b/streams-contrib/streams-persist-mongo/src/main/resources/reference.conf new file mode 100644 index 0000000..fca2903 --- /dev/null +++ b/streams-contrib/streams-persist-mongo/src/main/resources/reference.conf @@ -0,0 +1,8 @@ +# Apache Streams (incubating) +# Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 +"mongo": { + "host": "localhost", + "port": 27017, + "db": "local", + "collection": "startup_log" +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/8020e5f7/streams-contrib/streams-persist-mongo/src/main/resources/reference.json ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-persist-mongo/src/main/resources/reference.json b/streams-contrib/streams-persist-mongo/src/main/resources/reference.json deleted file mode 100644 index 41c9a12..0000000 --- a/streams-contrib/streams-persist-mongo/src/main/resources/reference.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "mongo": { - "host": "localhost", - "port": 27017, - "db": "local", - "collection": "startup_log" - } -}
