Repository: incubator-streams-examples Updated Branches: refs/heads/master b61b5908b -> ac840dc5c
STREAMS-446: RAT check fails in prep for 0.4-incubating release, this closes apache/incubator-streams-examples#18 Project: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/commit/ac840dc5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/tree/ac840dc5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/diff/ac840dc5 Branch: refs/heads/master Commit: ac840dc5c9970ef3b54e32280d03c21f9110b78e Parents: b61b590 Author: jfrazee <jfrazee> Authored: Thu Oct 27 19:07:53 2016 -0400 Committer: smarthi <[email protected]> Committed: Thu Oct 27 19:07:53 2016 -0400 ---------------------------------------------------------------------- flink/flink-twitter-collection/pom.xml | 22 ++++++++---- flink/src/site/markdown/flink.md | 3 +- local/elasticsearch-hdfs/pom.xml | 16 ++++----- local/elasticsearch-reindex/pom.xml | 6 ++-- local/mongo-elasticsearch-sync/pom.xml | 16 ++++----- local/twitter-follow-neo4j/pom.xml | 12 +++---- local/twitter-history-elasticsearch/pom.xml | 14 ++++---- local/twitter-userstream-elasticsearch/pom.xml | 14 ++++---- pom.xml | 38 --------------------- src/site/markdown/credentials/twitter.md | 8 +++-- src/site/markdown/install/docker.md | 3 +- src/site/markdown/install/git.md | 4 ++- src/site/markdown/install/java.md | 1 + src/site/markdown/install/maven.md | 1 + src/site/markdown/install/sbt.md | 8 +++-- src/site/markdown/services/elasticsearch.md | 12 ++++--- src/site/markdown/services/mongo.md | 11 +++--- src/site/markdown/services/neo4j.md | 7 ++-- 18 files changed, 91 insertions(+), 105 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/flink/flink-twitter-collection/pom.xml ---------------------------------------------------------------------- diff --git a/flink/flink-twitter-collection/pom.xml b/flink/flink-twitter-collection/pom.xml index 39ccb4d..f9e0a97 100644 --- a/flink/flink-twitter-collection/pom.xml +++ b/flink/flink-twitter-collection/pom.xml @@ -69,7 +69,7 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-core</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> @@ -78,27 +78,27 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-config</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-util</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-pojo</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-provider-twitter</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-hdfs</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> @@ -465,6 +465,16 @@ </dependency> </dependencies> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>src/test/resources/1000twitterids.txt</exclude> + <exclude>src/test/resources/asf.txt</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/flink/src/site/markdown/flink.md ---------------------------------------------------------------------- diff --git a/flink/src/site/markdown/flink.md b/flink/src/site/markdown/flink.md index 6926fa4..151182b 100644 --- a/flink/src/site/markdown/flink.md +++ b/flink/src/site/markdown/flink.md @@ -8,4 +8,5 @@ Create a local file `flink.conf` When configuring a stream, include this file: include "flink.conf" - + +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/local/elasticsearch-hdfs/pom.xml ---------------------------------------------------------------------- diff --git a/local/elasticsearch-hdfs/pom.xml b/local/elasticsearch-hdfs/pom.xml index dd9254d..3fb7be3 100644 --- a/local/elasticsearch-hdfs/pom.xml +++ b/local/elasticsearch-hdfs/pom.xml @@ -67,7 +67,7 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-core</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> @@ -76,41 +76,41 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-config</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-util</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-schema-activitystreams</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-runtime-local</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-elasticsearch</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-elasticsearch</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-hdfs</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/local/elasticsearch-reindex/pom.xml ---------------------------------------------------------------------- diff --git a/local/elasticsearch-reindex/pom.xml b/local/elasticsearch-reindex/pom.xml index 119ea3a..be15a36 100644 --- a/local/elasticsearch-reindex/pom.xml +++ b/local/elasticsearch-reindex/pom.xml @@ -83,7 +83,7 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-schema-activitystreams</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> @@ -93,12 +93,12 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-elasticsearch</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-elasticsearch</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/local/mongo-elasticsearch-sync/pom.xml ---------------------------------------------------------------------- diff --git a/local/mongo-elasticsearch-sync/pom.xml b/local/mongo-elasticsearch-sync/pom.xml index fca6557..ebba2ac 100644 --- a/local/mongo-elasticsearch-sync/pom.xml +++ b/local/mongo-elasticsearch-sync/pom.xml @@ -66,7 +66,7 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-core</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> @@ -75,34 +75,34 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-config</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-runtime-local</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-elasticsearch</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-mongo</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-mongo</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-schema-activitystreams</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> @@ -352,4 +352,4 @@ </profile> </profiles> -</project> \ No newline at end of file +</project> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/local/twitter-follow-neo4j/pom.xml ---------------------------------------------------------------------- diff --git a/local/twitter-follow-neo4j/pom.xml b/local/twitter-follow-neo4j/pom.xml index 14ce631..d82dc12 100644 --- a/local/twitter-follow-neo4j/pom.xml +++ b/local/twitter-follow-neo4j/pom.xml @@ -49,17 +49,17 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-config</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-runtime-local</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-provider-twitter</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> @@ -70,12 +70,12 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-graph</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-pojo</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> @@ -313,4 +313,4 @@ </profile> </profiles> -</project> \ No newline at end of file +</project> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/local/twitter-history-elasticsearch/pom.xml ---------------------------------------------------------------------- diff --git a/local/twitter-history-elasticsearch/pom.xml b/local/twitter-history-elasticsearch/pom.xml index 268c462..64f89ea 100644 --- a/local/twitter-history-elasticsearch/pom.xml +++ b/local/twitter-history-elasticsearch/pom.xml @@ -69,7 +69,7 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-core</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> @@ -78,29 +78,29 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-config</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-util</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-pojo</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-runtime-local</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-provider-twitter</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> @@ -111,7 +111,7 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-elasticsearch</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/local/twitter-userstream-elasticsearch/pom.xml ---------------------------------------------------------------------- diff --git a/local/twitter-userstream-elasticsearch/pom.xml b/local/twitter-userstream-elasticsearch/pom.xml index 02eec6d..9fa1b4f 100644 --- a/local/twitter-userstream-elasticsearch/pom.xml +++ b/local/twitter-userstream-elasticsearch/pom.xml @@ -67,7 +67,7 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-core</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> @@ -76,32 +76,32 @@ <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-config</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-runtime-local</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-filters</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-provider-twitter</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-persist-elasticsearch</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-pojo</artifactId> - <version>0.4-incubating</version> + <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index d1df57e..c7864bc 100644 --- a/pom.xml +++ b/pom.xml @@ -527,44 +527,6 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> - <configuration> - <excludes combine.children="append"> - <exclude>.travis.yml</exclude> - <exclude>.git</exclude> - <exclude>.gitignore</exclude> - <exclude>.git/**</exclude> - <exclude>.idea/**</exclude> - <exclude>**/DEPENDENCIES</exclude> - <exclude>**/LICENSE</exclude> - <exclude>**/MANIFEST.MF</exclude> - <exclude>**/NOTICE</exclude> - <exclude>**/README.*</exclude> - <exclude>**/target/**</exclude> - <exclude>**/overlays/**</exclude> - <exclude>**/src/test/resources/**/*.csv</exclude> - <exclude>**/src/test/resources/**/*.tsv</exclude> - <exclude>**/src/test/resources/**/*.txt</exclude> - <exclude>**/src/site/resources/**/*.csv</exclude> - <exclude>**/src/site/resources/**/*.tsv</exclude> - <exclude>**/src/site/resources/**/*.txt</exclude> - <exclude>**/src/site/resources/**/*.json</exclude> - <exclude>**/.gitignore</exclude> - <exclude>**/*.properties</exclude> - <exclude>**/*.iml</exclude> - <exclude>**/*.ini</exclude> - <exclude>**/*.jar</exclude> - <exclude>dependency-reduced-pom.xml</exclude> - <exclude>rat.txt</exclude> - </excludes> - </configuration> - <executions> - <execution> - <goals> - <goal>check</goal> - </goals> - <phase>validate</phase> - </execution> - </executions> </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/credentials/twitter.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/credentials/twitter.md b/src/site/markdown/credentials/twitter.md index b716115..4960ccb 100644 --- a/src/site/markdown/credentials/twitter.md +++ b/src/site/markdown/credentials/twitter.md @@ -12,11 +12,13 @@ Create a local file `twitter.oauth.conf` with valid twitter credentials } Log into developer.twitter.com - + Visit https://apps.twitter.com and create an application. -Select your application and click into 'Keys and Access Tokens' +Select your application and click into 'Keys and Access Tokens' The consumerKey and consumerSecret are application-wide. -The accessToken and accessTokenSecret are per-user. +The accessToken and accessTokenSecret are per-user. + +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/install/docker.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/install/docker.md b/src/site/markdown/install/docker.md index 539b4df..996bd4e 100644 --- a/src/site/markdown/install/docker.md +++ b/src/site/markdown/install/docker.md @@ -18,6 +18,7 @@ If you need to install docker, start here: Run from your command line: docker ps - + If you see a (possibly empty) list of running containers, you are good. +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/install/git.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/install/git.md b/src/site/markdown/install/git.md index 42a1d2e..c1aad85 100644 --- a/src/site/markdown/install/git.md +++ b/src/site/markdown/install/git.md @@ -1,7 +1,7 @@ #### Git git -version - + | Possible result | Explanation | |-----------------|-------------| | bash: git: No such file or directory | You need to install git | @@ -11,3 +11,5 @@ If you need to install docker, start here: [https://git-scm.com/book/en/v2/Getting-Started-Installing-Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) + +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/install/java.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/install/java.md b/src/site/markdown/install/java.md index 05c79fd..24b527f 100644 --- a/src/site/markdown/install/java.md +++ b/src/site/markdown/install/java.md @@ -15,3 +15,4 @@ If you need to install or upgrade Java, start here: [http://www.oracle.com/technetwork/java/javase/downloads/index.html](http://www.oracle.com/technetwork/java/javase/downloads/index.html) +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/install/maven.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/install/maven.md b/src/site/markdown/install/maven.md index de620f2..17d8d3a 100644 --- a/src/site/markdown/install/maven.md +++ b/src/site/markdown/install/maven.md @@ -18,3 +18,4 @@ If you need to install maven, start here: [http://maven.apache.org/install.html](http://maven.apache.org/install.html) +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/install/sbt.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/install/sbt.md b/src/site/markdown/install/sbt.md index 8fa3d88..b8bc684 100644 --- a/src/site/markdown/install/sbt.md +++ b/src/site/markdown/install/sbt.md @@ -3,13 +3,15 @@ Run from your command line: sbt - + | Possible result | Explanation | |-----------------|-------------| | bash: sbt: command not found | You need to install sbt | - + You should really install sbt-extras, like this: curl -s https://raw.githubusercontent.com/paulp/sbt-extras/master/sbt > /usr/bin/sbtx && chmod 0755 /usr/bin/sbtx -Now you can easily run the streams examples using SBT, like a boss. \ No newline at end of file +Now you can easily run the streams examples using SBT, like a boss. + +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/services/elasticsearch.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/services/elasticsearch.md b/src/site/markdown/services/elasticsearch.md index 14454a7..58d096b 100644 --- a/src/site/markdown/services/elasticsearch.md +++ b/src/site/markdown/services/elasticsearch.md @@ -2,14 +2,14 @@ Start elasticsearch via docker with the docker maven plugin: - docker -PdockerITs docker:start + docker -PdockerITs docker:start Confirm that elasticsearch is running: docker ps - + Confirm that host and post(s) are in property file: - + cat elasticsearch.properties Create a local file `elasticsearch.conf` with cluster details: @@ -24,10 +24,12 @@ When configuring a stream, include these files: include "elasticsearch.properties" include "elasticsearch.conf" - + Supply application-specific configuration as well: elasticsearch { index: "" type: "" - } \ No newline at end of file + } + +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/services/mongo.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/services/mongo.md b/src/site/markdown/services/mongo.md index 002c12d..c2b182d 100644 --- a/src/site/markdown/services/mongo.md +++ b/src/site/markdown/services/mongo.md @@ -2,14 +2,14 @@ Start mongo via docker with the docker maven plugin: - docker -PdockerITs docker:start + docker -PdockerITs docker:start Confirm that elasticsearch is running: docker ps - + Confirm that host and post(s) are in property file: - + cat mongo.properties Create a local file `elasticsearch.conf` with cluster details: @@ -23,11 +23,12 @@ When configuring a stream, include these files: include "mongo.properties" include "mongo.conf" - + Supply application-specific configuration as well: mongo { db: "", collection: "" } - \ No newline at end of file + +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/ac840dc5/src/site/markdown/services/neo4j.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/services/neo4j.md b/src/site/markdown/services/neo4j.md index 9d5895f..1d88ed0 100644 --- a/src/site/markdown/services/neo4j.md +++ b/src/site/markdown/services/neo4j.md @@ -2,14 +2,14 @@ Start mongo via docker with the docker maven plugin: - docker -PdockerITs docker:start + docker -PdockerITs docker:start Confirm that elasticsearch is running: docker ps - + Confirm that host and post(s) are in property file: - + cat neo4j.properties Create a local file `neo4j.conf` with cluster details: @@ -26,3 +26,4 @@ When configuring a stream, include these files: include "neo4j.properties" include "neo4j.conf" +###### Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0
