Repository: nifi Updated Branches: refs/heads/master 6e8b1c8f7 -> ba84ad1e3
NIFI-5105: Improvements for nifi-aws-bundle Signed-off-by: James Wing <[email protected]> This closes #2664. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/ba84ad1e Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/ba84ad1e Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/ba84ad1e Branch: refs/heads/master Commit: ba84ad1e380f0e45348f36b91a46b97c258752b4 Parents: 6e8b1c8 Author: zenfenan <[email protected]> Authored: Sat Apr 28 17:47:04 2018 +0530 Committer: James Wing <[email protected]> Committed: Sat Apr 28 14:03:14 2018 -0700 ---------------------------------------------------------------------- .../nifi-aws-bundle/nifi-aws-processors/pom.xml | 25 +++++++------------- nifi-nar-bundles/nifi-aws-bundle/pom.xml | 2 +- 2 files changed, 10 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/ba84ad1e/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml index 21135f3..e9041b3 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml @@ -20,8 +20,10 @@ <artifactId>nifi-aws-bundle</artifactId> <version>1.7.0-SNAPSHOT</version> </parent> + <artifactId>nifi-aws-processors</artifactId> <packaging>jar</packaging> + <dependencies> <dependency> <groupId>org.apache.nifi</groupId> @@ -43,31 +45,23 @@ <version>1.7.0-SNAPSHOT</version> </dependency> <dependency> - <groupId>com.amazonaws</groupId> - <artifactId>aws-java-sdk</artifactId> - <version>1.11.68</version> - </dependency> - <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-mock</artifactId> <version>1.7.0-SNAPSHOT</version> <scope>test</scope> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-simple</artifactId> - <scope>test</scope> + <groupId>org.apache.nifi</groupId> + <artifactId>nifi-ssl-context-service-api</artifactId> </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> + <groupId>com.amazonaws</groupId> + <artifactId>aws-java-sdk-cloudwatchmetrics</artifactId> </dependency> <dependency> - <groupId>org.apache.nifi</groupId> - <artifactId>nifi-ssl-context-service-api</artifactId> + <groupId>com.amazonaws</groupId> + <artifactId>aws-java-sdk-sts</artifactId> </dependency> - <!-- Test Dependencies for testing interaction with AWS --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> @@ -75,9 +69,8 @@ <version>2.6.6</version> <scope>test</scope> </dependency> - - </dependencies> + <build> <plugins> <plugin> http://git-wip-us.apache.org/repos/asf/nifi/blob/ba84ad1e/nifi-nar-bundles/nifi-aws-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-aws-bundle/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/pom.xml index 674106f..1adcab4 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/pom.xml @@ -26,7 +26,7 @@ <packaging>pom</packaging> <properties> - <aws-java-sdk-version>1.11.68</aws-java-sdk-version> + <aws-java-sdk-version>1.11.319</aws-java-sdk-version> </properties> <dependencyManagement>
