NIFI-5105: Improvements for nifi-aws-bundle

Signed-off-by: James Wing <jvwing@gmail.com>

This closes #2664.
This commit is contained in:
zenfenan 2018-04-28 17:47:04 +05:30 committed by James Wing
parent 6e8b1c8f74
commit ba84ad1e38
2 changed files with 12 additions and 19 deletions

View File

@ -20,8 +20,10 @@
<artifactId>nifi-aws-bundle</artifactId> <artifactId>nifi-aws-bundle</artifactId>
<version>1.7.0-SNAPSHOT</version> <version>1.7.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>nifi-aws-processors</artifactId> <artifactId>nifi-aws-processors</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.nifi</groupId> <groupId>org.apache.nifi</groupId>
@ -42,32 +44,24 @@
<artifactId>nifi-aws-service-api</artifactId> <artifactId>nifi-aws-service-api</artifactId>
<version>1.7.0-SNAPSHOT</version> <version>1.7.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.11.68</version>
</dependency>
<dependency> <dependency>
<groupId>org.apache.nifi</groupId> <groupId>org.apache.nifi</groupId>
<artifactId>nifi-mock</artifactId> <artifactId>nifi-mock</artifactId>
<version>1.7.0-SNAPSHOT</version> <version>1.7.0-SNAPSHOT</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>org.apache.nifi</groupId> <groupId>org.apache.nifi</groupId>
<artifactId>nifi-ssl-context-service-api</artifactId> <artifactId>nifi-ssl-context-service-api</artifactId>
</dependency> </dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudwatchmetrics</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
</dependency>
<!-- Test Dependencies for testing interaction with AWS --> <!-- Test Dependencies for testing interaction with AWS -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
@ -75,9 +69,8 @@
<version>2.6.6</version> <version>2.6.6</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -26,7 +26,7 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<aws-java-sdk-version>1.11.68</aws-java-sdk-version> <aws-java-sdk-version>1.11.319</aws-java-sdk-version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>