Repository: incubator-streams Updated Branches: refs/heads/master 0b2927ef8 -> be8e1c5b3
STREAMS-446: RAT check fails in prep for 0.4-incubating release, this closes apache/incubator-streams#321 Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/be8e1c5b Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/be8e1c5b Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/be8e1c5b Branch: refs/heads/master Commit: be8e1c5b3afed7184d90ce8fb498001cb7b29661 Parents: 0b2927e Author: jfrazee <jfrazee> Authored: Thu Oct 27 19:11:09 2016 -0400 Committer: smarthi <[email protected]> Committed: Thu Oct 27 19:11:09 2016 -0400 ---------------------------------------------------------------------- pom.xml | 50 ++++---------------- .../src/site/markdown/elasticsearch.md | 12 +++-- .../src/site/markdown/neo4j.md | 7 +-- .../src/site/markdown/mongo.md | 11 +++-- streams-contrib/streams-provider-rss/pom.xml | 9 ++++ .../src/site/markdown/twitter.md | 8 ++-- streams-monitoring/pom.xml | 2 +- streams-runtimes/pom.xml | 2 +- streams-runtimes/streams-runtime-local/pom.xml | 9 ++++ streams-runtimes/streams-runtime-pig/pom.xml | 10 ++++ streams-verbs/pom.xml | 1 + 11 files changed, 61 insertions(+), 60 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4da52ed..c433ffe 100644 --- a/pom.xml +++ b/pom.xml @@ -225,48 +225,10 @@ </properties> <build> <plugins> - <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> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + </plugin> </plugins> </build> </profile> @@ -316,6 +278,10 @@ <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/streams-contrib/streams-persist-elasticsearch/src/site/markdown/elasticsearch.md ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-persist-elasticsearch/src/site/markdown/elasticsearch.md b/streams-contrib/streams-persist-elasticsearch/src/site/markdown/elasticsearch.md index 14454a7..58d096b 100644 --- a/streams-contrib/streams-persist-elasticsearch/src/site/markdown/elasticsearch.md +++ b/streams-contrib/streams-persist-elasticsearch/src/site/markdown/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/blob/be8e1c5b/streams-contrib/streams-persist-graph/src/site/markdown/neo4j.md ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-persist-graph/src/site/markdown/neo4j.md b/streams-contrib/streams-persist-graph/src/site/markdown/neo4j.md index c86ee8d..42cce03 100644 --- a/streams-contrib/streams-persist-graph/src/site/markdown/neo4j.md +++ b/streams-contrib/streams-persist-graph/src/site/markdown/neo4j.md @@ -2,14 +2,14 @@ Start neo4j via docker with the docker maven plugin: - docker -PdockerITs docker:start + docker -PdockerITs docker:start Confirm that neo4j 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 http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/streams-contrib/streams-persist-mongo/src/site/markdown/mongo.md ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-persist-mongo/src/site/markdown/mongo.md b/streams-contrib/streams-persist-mongo/src/site/markdown/mongo.md index 002c12d..c2b182d 100644 --- a/streams-contrib/streams-persist-mongo/src/site/markdown/mongo.md +++ b/streams-contrib/streams-persist-mongo/src/site/markdown/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/blob/be8e1c5b/streams-contrib/streams-provider-rss/pom.xml ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-provider-rss/pom.xml b/streams-contrib/streams-provider-rss/pom.xml index 3ba12b4..74ab729 100644 --- a/streams-contrib/streams-provider-rss/pom.xml +++ b/streams-contrib/streams-provider-rss/pom.xml @@ -205,6 +205,15 @@ <skipTests>${skipITs}</skipTests> </configuration> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>src/test/resources/top100.txt</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> </project> http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/streams-contrib/streams-provider-twitter/src/site/markdown/twitter.md ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-provider-twitter/src/site/markdown/twitter.md b/streams-contrib/streams-provider-twitter/src/site/markdown/twitter.md index b716115..4960ccb 100644 --- a/streams-contrib/streams-provider-twitter/src/site/markdown/twitter.md +++ b/streams-contrib/streams-provider-twitter/src/site/markdown/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/blob/be8e1c5b/streams-monitoring/pom.xml ---------------------------------------------------------------------- diff --git a/streams-monitoring/pom.xml b/streams-monitoring/pom.xml index c26794b..116d0f2 100644 --- a/streams-monitoring/pom.xml +++ b/streams-monitoring/pom.xml @@ -119,7 +119,7 @@ <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes combine.children="append"> - <exclude>**/MemoryUsageObjects.json</exclude> + <exclude>src/test/resources/MemoryUsageObjects.json</exclude> </excludes> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/streams-runtimes/pom.xml ---------------------------------------------------------------------- diff --git a/streams-runtimes/pom.xml b/streams-runtimes/pom.xml index ed18c65..dca7d54 100644 --- a/streams-runtimes/pom.xml +++ b/streams-runtimes/pom.xml @@ -38,4 +38,4 @@ <module>streams-runtime-local</module> <module>streams-runtime-pig</module> </modules> -</project> \ No newline at end of file +</project> http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/streams-runtimes/streams-runtime-local/pom.xml ---------------------------------------------------------------------- diff --git a/streams-runtimes/streams-runtime-local/pom.xml b/streams-runtimes/streams-runtime-local/pom.xml index 55b78ce..5b0453d 100644 --- a/streams-runtimes/streams-runtime-local/pom.xml +++ b/streams-runtimes/streams-runtime-local/pom.xml @@ -163,6 +163,15 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>src/test/resources/TestFile.txt</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> </project> http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/streams-runtimes/streams-runtime-pig/pom.xml ---------------------------------------------------------------------- diff --git a/streams-runtimes/streams-runtime-pig/pom.xml b/streams-runtimes/streams-runtime-pig/pom.xml index 900cebe..4647ee0 100644 --- a/streams-runtimes/streams-runtime-pig/pom.xml +++ b/streams-runtimes/streams-runtime-pig/pom.xml @@ -202,6 +202,16 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>src/test/resources/convertertestin.txt</exclude> + <exclude>src/test/resources/convertertestout.txt</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> </project> http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/be8e1c5b/streams-verbs/pom.xml ---------------------------------------------------------------------- diff --git a/streams-verbs/pom.xml b/streams-verbs/pom.xml index e91608d..aaebe9a 100644 --- a/streams-verbs/pom.xml +++ b/streams-verbs/pom.xml @@ -179,6 +179,7 @@ <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes combine.children="append"> + <exclude>src/test/resources/activities.txt</exclude> <exclude>src/test/resources/actor.json</exclude> <exclude>src/test/resources/do.json</exclude> <exclude>src/test/resources/follow.json</exclude>
