Repository: nifi Updated Branches: refs/heads/master 2dc094765 -> 84cac0dac
NIFI-2299 Add standard services api access for scripting processors Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/84cac0da Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/84cac0da Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/84cac0da Branch: refs/heads/master Commit: 84cac0daca24ac28d9239250a977da9076784ca5 Parents: 2dc0947 Author: joewitt <[email protected]> Authored: Sat Jul 30 15:55:59 2016 -0400 Committer: Mark Payne <[email protected]> Committed: Tue Aug 9 17:15:44 2016 -0400 ---------------------------------------------------------------------- .../nifi-hbase-processors/pom.xml | 9 ++++---- .../nifi-scripting-nar/pom.xml | 6 ++++- nifi-nar-bundles/nifi-scripting-bundle/pom.xml | 24 ++++++++++++++++++++ 3 files changed, 33 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/84cac0da/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/pom.xml b/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/pom.xml index ed24a36..7423777 100644 --- a/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/pom.xml +++ b/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/pom.xml @@ -53,12 +53,11 @@ <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> </dependency> - - <dependency> + <dependency> <groupId>org.apache.nifi</groupId> - <artifactId>nifi-mock</artifactId> - <scope>test</scope> - </dependency> + <artifactId>nifi-mock</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> http://git-wip-us.apache.org/repos/asf/nifi/blob/84cac0da/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml index 75a1d24..35cdca8 100644 --- a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml +++ b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml @@ -34,6 +34,10 @@ <groupId>org.apache.nifi</groupId> <artifactId>nifi-scripting-processors</artifactId> </dependency> + <dependency> + <groupId>org.apache.nifi</groupId> + <artifactId>nifi-standard-services-api-nar</artifactId> + <type>nar</type> + </dependency> </dependencies> - </project> http://git-wip-us.apache.org/repos/asf/nifi/blob/84cac0da/nifi-nar-bundles/nifi-scripting-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-scripting-bundle/pom.xml b/nifi-nar-bundles/nifi-scripting-bundle/pom.xml index 64a4ba6..b587480 100644 --- a/nifi-nar-bundles/nifi-scripting-bundle/pom.xml +++ b/nifi-nar-bundles/nifi-scripting-bundle/pom.xml @@ -38,6 +38,30 @@ <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> + <groupId>org.apache.nifi</groupId> + <artifactId>nifi-distributed-cache-client-service-api</artifactId> + <version>1.0.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.nifi</groupId> + <artifactId>nifi-ssl-context-service-api</artifactId> + <version>1.0.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.nifi</groupId> + <artifactId>nifi-http-context-map-api</artifactId> + <version>1.0.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.nifi</groupId> + <artifactId>nifi-dbcp-service-api</artifactId> + <version>1.0.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.4.5</version>
