From 1c30e78716dd9f592cdbe9abc583053cb7fcd31d Mon Sep 17 00:00:00 2001 From: Christopher Currie Date: Sun, 10 Sep 2017 13:19:45 -0700 Subject: [PATCH 1/4] NIFI-3950 Refactor AWS bundle --- nifi-assembly/pom.xml | 35 ++++---- .../nifi-aws-abstract-processors/pom.xml | 79 ++++++++++++++++ ...stractAWSCredentialsProviderProcessor.java | 0 .../processors/aws/AbstractAWSProcessor.java | 0 .../CredentialPropertyDescriptors.java | 0 .../dynamodb/AbstractDynamoDBProcessor.java | 4 - .../AbstractWriteDynamoDBProcessor.java | 3 - .../processors/aws/dynamodb/ItemKeys.java | 0 .../kinesis/AbstractBaseKinesisProcessor.java | 0 .../AbstractKinesisFirehoseProcessor.java | 0 .../AbstractKinesisStreamProcessor.java | 0 .../lambda/AbstractAWSLambdaProcessor.java | 0 .../aws/s3/AbstractS3Processor.java | 0 .../aws/sns/AbstractSNSProcessor.java | 0 .../aws/sqs/AbstractSQSProcessor.java | 0 .../nifi-aws-bundle/nifi-aws-nar/pom.xml | 5 +- .../nifi-aws-processors/pom.xml | 10 +++ .../aws/cloudwatch/ITPutCloudWatchMetric.java | 2 +- .../nifi-aws-service-api-nar/pom.xml | 45 ++++++++++ .../nifi-aws-service-api/pom.xml | 38 ++++++++ .../AWSCredentialsProviderService.java | 2 +- nifi-nar-bundles/nifi-aws-bundle/pom.xml | 19 ++++ .../nifi-standard-processors/pom.xml | 25 +++--- pom.xml | 90 +++++++++---------- 24 files changed, 271 insertions(+), 86 deletions(-) create mode 100644 nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/AbstractAWSCredentialsProviderProcessor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/AbstractAWSProcessor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/credentials/provider/factory/CredentialPropertyDescriptors.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractDynamoDBProcessor.java (99%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractWriteDynamoDBProcessor.java (96%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/dynamodb/ItemKeys.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/kinesis/AbstractBaseKinesisProcessor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/kinesis/firehose/AbstractKinesisFirehoseProcessor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/kinesis/stream/AbstractKinesisStreamProcessor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/lambda/AbstractAWSLambdaProcessor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/s3/AbstractS3Processor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/sns/AbstractSNSProcessor.java (100%) rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-abstract-processors}/src/main/java/org/apache/nifi/processors/aws/sqs/AbstractSQSProcessor.java (100%) create mode 100644 nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml create mode 100644 nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml rename nifi-nar-bundles/nifi-aws-bundle/{nifi-aws-processors => nifi-aws-service-api}/src/main/java/org/apache/nifi/processors/aws/credentials/provider/service/AWSCredentialsProviderService.java (95%) diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml index 5b10e0c9e26b..90597ea03664 100755 --- a/nifi-assembly/pom.xml +++ b/nifi-assembly/pom.xml @@ -1,13 +1,13 @@ - 4.0.0 @@ -281,6 +281,11 @@ nifi-aws-nar nar + + org.apache.nifi + nifi-aws-service-api-nar + nar + org.apache.nifi nifi-ambari-nar @@ -643,11 +648,11 @@ /opt/nifi/nifi-${project.version}/lib - /opt/nifi/nifi-${project.version}/lib @@ -681,7 +686,7 @@ org.apache.nifi:nifi-security-utils org.apache.nifi:nifi-utils - org.apache.nifi:nifi-resources org.apache.nifi:nifi-docs diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml new file mode 100644 index 000000000000..45ec543cb9ec --- /dev/null +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml @@ -0,0 +1,79 @@ + + + + 4.0.0 + + + nifi-aws-bundle + org.apache.nifi + 1.4.0-SNAPSHOT + + + nifi-aws-abstract-processors + + + + com.amazonaws + aws-java-sdk-core + + + com.amazonaws + aws-java-sdk-dynamodb + + + com.amazonaws + aws-java-sdk-kinesis + + + com.amazonaws + aws-java-sdk-lambda + + + com.amazonaws + aws-java-sdk-s3 + + + com.amazonaws + aws-java-sdk-sns + + + com.amazonaws + aws-java-sdk-sqs + + + org.apache.commons + commons-lang3 + + + org.apache.nifi + nifi-api + + + org.apache.nifi + nifi-aws-service-api + ${project.version} + + + org.apache.nifi + nifi-ssl-context-service-api + + + org.apache.nifi + nifi-utils + + + + diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSCredentialsProviderProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSCredentialsProviderProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSCredentialsProviderProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSCredentialsProviderProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/credentials/provider/factory/CredentialPropertyDescriptors.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/credentials/provider/factory/CredentialPropertyDescriptors.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/credentials/provider/factory/CredentialPropertyDescriptors.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/credentials/provider/factory/CredentialPropertyDescriptors.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractDynamoDBProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractDynamoDBProcessor.java similarity index 99% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractDynamoDBProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractDynamoDBProcessor.java index 3a5adf7f15b4..aed957f90240 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractDynamoDBProcessor.java +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractDynamoDBProcessor.java @@ -49,10 +49,6 @@ /** * Base class for NiFi dynamo db related processors - * - * @see DeleteDynamoDB - * @see PutDynamoDB - * @see GetDynamoDB */ public abstract class AbstractDynamoDBProcessor extends AbstractAWSCredentialsProviderProcessor { diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractWriteDynamoDBProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractWriteDynamoDBProcessor.java similarity index 96% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractWriteDynamoDBProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractWriteDynamoDBProcessor.java index e7ac523b2c56..fc8803703631 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractWriteDynamoDBProcessor.java +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/AbstractWriteDynamoDBProcessor.java @@ -61,9 +61,6 @@ protected void handleUnprocessedItems(final ProcessSession session, Map getRequestItem(WriteRequest writeRequest); } diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/ItemKeys.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/ItemKeys.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/ItemKeys.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/dynamodb/ItemKeys.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/AbstractBaseKinesisProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/AbstractBaseKinesisProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/AbstractBaseKinesisProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/AbstractBaseKinesisProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/firehose/AbstractKinesisFirehoseProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/firehose/AbstractKinesisFirehoseProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/firehose/AbstractKinesisFirehoseProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/firehose/AbstractKinesisFirehoseProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/stream/AbstractKinesisStreamProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/stream/AbstractKinesisStreamProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/stream/AbstractKinesisStreamProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/kinesis/stream/AbstractKinesisStreamProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/lambda/AbstractAWSLambdaProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/lambda/AbstractAWSLambdaProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/lambda/AbstractAWSLambdaProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/lambda/AbstractAWSLambdaProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/AbstractS3Processor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/s3/AbstractS3Processor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/AbstractS3Processor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/s3/AbstractS3Processor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/sns/AbstractSNSProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/sns/AbstractSNSProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/sns/AbstractSNSProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/sns/AbstractSNSProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/sqs/AbstractSQSProcessor.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/sqs/AbstractSQSProcessor.java similarity index 100% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/sqs/AbstractSQSProcessor.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/sqs/AbstractSQSProcessor.java diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml index 5b063042fb61..ab68ffa3fdcb 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml @@ -32,13 +32,14 @@ org.apache.nifi - nifi-standard-services-api-nar + nifi-aws-service-api-nar + ${project.version} nar org.apache.nifi nifi-aws-processors - 1.4.0-SNAPSHOT + ${project.version} 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 6cc257c8ad02..f590fef162b1 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 @@ -31,6 +31,16 @@ org.apache.nifi nifi-processor-utils + + org.apache.nifi + nifi-aws-abstract-processors + ${project.version} + + + org.apache.nifi + nifi-aws-service-api + ${project.version} + com.amazonaws aws-java-sdk diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/cloudwatch/ITPutCloudWatchMetric.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/cloudwatch/ITPutCloudWatchMetric.java index 48eeecf19dac..d2d2afed01b7 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/cloudwatch/ITPutCloudWatchMetric.java +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/cloudwatch/ITPutCloudWatchMetric.java @@ -26,7 +26,7 @@ import java.io.IOException; /** - * Provides integration level testing with actual AWS Cloudwatcch resources for {@link PutCloudWatchMetric} and requires additional configuration and resources to work. + * Provides integration level testing with actual AWS CloudWatch resources for {@link PutCloudWatchMetric} and requires additional configuration and resources to work. */ public class ITPutCloudWatchMetric { diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml new file mode 100644 index 000000000000..a401b5946c68 --- /dev/null +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml @@ -0,0 +1,45 @@ + + + + 4.0.0 + + + org.apache.nifi + nifi-aws-bundle + 1.4.0-SNAPSHOT + + + nifi-aws-service-api-nar + nar + + true + true + + + + + org.apache.nifi + nifi-standard-services-api-nar + nar + + + org.apache.nifi + nifi-aws-service-api + ${project.version} + + + + diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml new file mode 100644 index 000000000000..727481a9d185 --- /dev/null +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml @@ -0,0 +1,38 @@ + + + + + nifi-aws-bundle + org.apache.nifi + 1.4.0-SNAPSHOT + + 4.0.0 + + nifi-aws-service-api + + + + com.amazonaws + aws-java-sdk-core + + + org.apache.nifi + nifi-api + ${project.version} + + + + diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/credentials/provider/service/AWSCredentialsProviderService.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/src/main/java/org/apache/nifi/processors/aws/credentials/provider/service/AWSCredentialsProviderService.java similarity index 95% rename from nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/credentials/provider/service/AWSCredentialsProviderService.java rename to nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/src/main/java/org/apache/nifi/processors/aws/credentials/provider/service/AWSCredentialsProviderService.java index 61b646d8d0db..6b2e165859d7 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/credentials/provider/service/AWSCredentialsProviderService.java +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/src/main/java/org/apache/nifi/processors/aws/credentials/provider/service/AWSCredentialsProviderService.java @@ -40,5 +40,5 @@ public interface AWSCredentialsProviderService extends ControllerService { * * @see AWSCredentialsProvider */ - public AWSCredentialsProvider getCredentialsProvider() throws ProcessException; + AWSCredentialsProvider getCredentialsProvider() throws ProcessException; } diff --git a/nifi-nar-bundles/nifi-aws-bundle/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/pom.xml index 1006cb8a1a4f..ea5c761992f7 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/pom.xml @@ -25,9 +25,28 @@ nifi-aws-bundle pom + + 1.11.68 + + + + + + com.amazonaws + aws-java-sdk-bom + ${aws-java-sdk-version} + pom + import + + + + nifi-aws-processors nifi-aws-nar + nifi-aws-service-api + nifi-aws-service-api-nar + nifi-aws-abstract-processors diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml index 7b60b842bdc3..0b5a85f339f1 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml @@ -1,13 +1,13 @@ - @@ -251,11 +251,6 @@ 1.4.0-SNAPSHOT test - - org.apache.nifi - nifi-schema-registry-service-api - test - org.apache.nifi nifi-lookup-services @@ -508,7 +503,7 @@ src/test/resources/TestUpdateRecord/schema/person-with-name-string-fields.avsc src/test/resources/TestUpdateRecord/schema/name-fields-only.avsc src/test/resources/TestUpdateRecord/schema/person-with-name-and-mother.avsc - src/main/java/org/apache/nifi/security/util/crypto/bcrypt/BCrypt.java diff --git a/pom.xml b/pom.xml index b719f6f51543..f15059716238 100644 --- a/pom.xml +++ b/pom.xml @@ -1,13 +1,13 @@ - 4.0.0 @@ -112,7 +112,7 @@ central - Maven Repository https://repo1.maven.org/maven2 @@ -341,8 +341,8 @@ quartz 2.2.1 - c3p0 @@ -417,7 +417,7 @@ spring-core ${spring.version} - commons-logging @@ -1107,12 +1107,6 @@ 1.4.0-SNAPSHOT nar - - org.apache.nifi - nifi-kudu-nar - 1.4.0-SNAPSHOT - nar - org.apache.nifi nifi-mongodb-nar @@ -1197,6 +1191,12 @@ 1.4.0-SNAPSHOT nar + + org.apache.nifi + nifi-aws-service-api-nar + 1.4.0-SNAPSHOT + nar + org.apache.nifi nifi-flume-nar @@ -1971,7 +1971,7 @@ - @@ -2062,9 +2062,9 @@ - integration-tests @@ -2085,11 +2085,11 @@ - contrib-check @@ -2122,11 +2122,11 @@ - disable-doclint @@ -2146,15 +2146,15 @@ - - hortonworks @@ -2190,12 +2190,12 @@ - - mapr @@ -2212,12 +2212,12 @@ - - cloudera @@ -2234,7 +2234,7 @@ - From 68dbc7aacc4ed97e0f6cb4ab5d5d21e6e72b2ecc Mon Sep 17 00:00:00 2001 From: Christopher Currie Date: Fri, 15 Sep 2017 09:20:35 -0700 Subject: [PATCH 2/4] PR feedback --- nifi-assembly/pom.xml | 30 +++---- .../nifi-aws-abstract-processors/pom.xml | 2 +- .../nifi-aws-bundle/nifi-aws-nar/pom.xml | 4 +- .../nifi-aws-processors/pom.xml | 4 +- .../nifi-aws-service-api-nar/pom.xml | 2 +- .../nifi-aws-service-api/pom.xml | 2 +- .../nifi-standard-processors/pom.xml | 25 +++--- pom.xml | 84 ++++++++++--------- 8 files changed, 82 insertions(+), 71 deletions(-) diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml index 90597ea03664..29349718fc5a 100755 --- a/nifi-assembly/pom.xml +++ b/nifi-assembly/pom.xml @@ -1,13 +1,13 @@ - 4.0.0 @@ -648,11 +648,11 @@ /opt/nifi/nifi-${project.version}/lib - /opt/nifi/nifi-${project.version}/lib @@ -686,7 +686,7 @@ org.apache.nifi:nifi-security-utils org.apache.nifi:nifi-utils - org.apache.nifi:nifi-resources org.apache.nifi:nifi-docs diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml index 45ec543cb9ec..c4d7a4699c62 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/pom.xml @@ -64,7 +64,7 @@ org.apache.nifi nifi-aws-service-api - ${project.version} + 1.4.0-SNAPSHOT org.apache.nifi diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml index ab68ffa3fdcb..500e99fcc819 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-nar/pom.xml @@ -33,13 +33,13 @@ org.apache.nifi nifi-aws-service-api-nar - ${project.version} + 1.4.0-SNAPSHOT nar org.apache.nifi nifi-aws-processors - ${project.version} + 1.4.0-SNAPSHOT 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 f590fef162b1..c0b1f2517ef6 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 @@ -34,12 +34,12 @@ org.apache.nifi nifi-aws-abstract-processors - ${project.version} + 1.4.0-SNAPSHOT org.apache.nifi nifi-aws-service-api - ${project.version} + 1.4.0-SNAPSHOT com.amazonaws diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml index a401b5946c68..92785f0119e5 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/pom.xml @@ -38,7 +38,7 @@ org.apache.nifi nifi-aws-service-api - ${project.version} + 1.4.0-SNAPSHOT diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml index 727481a9d185..28a74fcfd3bf 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api/pom.xml @@ -31,7 +31,7 @@ org.apache.nifi nifi-api - ${project.version} + 1.4.0-SNAPSHOT diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml index 0b5a85f339f1..7b60b842bdc3 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml @@ -1,13 +1,13 @@ - @@ -251,6 +251,11 @@ 1.4.0-SNAPSHOT test + + org.apache.nifi + nifi-schema-registry-service-api + test + org.apache.nifi nifi-lookup-services @@ -503,7 +508,7 @@ src/test/resources/TestUpdateRecord/schema/person-with-name-string-fields.avsc src/test/resources/TestUpdateRecord/schema/name-fields-only.avsc src/test/resources/TestUpdateRecord/schema/person-with-name-and-mother.avsc - src/main/java/org/apache/nifi/security/util/crypto/bcrypt/BCrypt.java diff --git a/pom.xml b/pom.xml index f15059716238..94ddce23529a 100644 --- a/pom.xml +++ b/pom.xml @@ -1,13 +1,13 @@ - 4.0.0 @@ -112,7 +112,7 @@ central - Maven Repository https://repo1.maven.org/maven2 @@ -341,8 +341,8 @@ quartz 2.2.1 - c3p0 @@ -417,7 +417,7 @@ spring-core ${spring.version} - commons-logging @@ -1107,6 +1107,12 @@ 1.4.0-SNAPSHOT nar + + org.apache.nifi + nifi-kudu-nar + 1.4.0-SNAPSHOT + nar + org.apache.nifi nifi-mongodb-nar @@ -1971,7 +1977,7 @@ - @@ -2062,9 +2068,9 @@ - integration-tests @@ -2085,11 +2091,11 @@ - contrib-check @@ -2122,11 +2128,11 @@ - disable-doclint @@ -2146,15 +2152,15 @@ - - hortonworks @@ -2190,12 +2196,12 @@ - - mapr @@ -2212,12 +2218,12 @@ - - cloudera @@ -2234,7 +2240,7 @@ - From 1d1cf8b913ed6df45a91b39261bf891362c3de50 Mon Sep 17 00:00:00 2001 From: Christopher Currie Date: Thu, 19 Oct 2017 08:23:02 -0700 Subject: [PATCH 3/4] Add LICENSE/NOTICE --- .../src/main/resources/META-INF/LICENSE | 232 ++++++++++++++++++ .../src/main/resources/META-INF/NOTICE | 65 +++++ 2 files changed, 297 insertions(+) create mode 100644 nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/LICENSE create mode 100644 nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/LICENSE b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/LICENSE new file mode 100644 index 000000000000..293a59c46bf5 --- /dev/null +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/LICENSE @@ -0,0 +1,232 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +APACHE NIFI SUBCOMPONENTS: + +The Apache NiFi project contains subcomponents with separate copyright +notices and license terms. Your use of the source code for the these +subcomponents is subject to the terms and conditions of the following +licenses. + + The binary distribution of this product bundles 'Bouncy Castle JDK 1.5' + under an MIT style license. + + Copyright (c) 2000 - 2015 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE new file mode 100644 index 000000000000..bfc54bc588fe --- /dev/null +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE @@ -0,0 +1,65 @@ +nifi-aws-service-api-nar +Copyright 2015-2017 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +****************** +Apache Software License v2 +****************** + +The following binary components are provided under the Apache Software License v2 + + (ASLv2) Apache HttpComponents + The following NOTICE information applies: + Apache HttpClient + Copyright 1999-2014 The Apache Software Foundation + + Apache HttpCore + Copyright 2005-2014 The Apache Software Foundation + + This project contains annotations derived from JCIP-ANNOTATIONS + Copyright (c) 2005 Brian Goetz and Tim Peierls. See http://www.jcip.net + + (ASLv2) Joda Time + The following NOTICE information applies: + This product includes software developed by + Joda.org (http://www.joda.org/). + + (ASLv2) Apache Commons Codec + The following NOTICE information applies: + Apache Commons Codec + Copyright 2002-2014 The Apache Software Foundation + + src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java + contains test data from http://aspell.net/test/orig/batch0.tab. + Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org) + + =============================================================================== + + The content of package org.apache.commons.codec.language.bm has been translated + from the original php source code available at http://stevemorse.org/phoneticinfo.htm + with permission from the original authors. + Original source copyright: + Copyright (c) 2008 Alexander Beider & Stephen P. Morse. + + (ASLv2) Apache Commons Logging + The following NOTICE information applies: + Apache Commons Logging + Copyright 2003-2013 The Apache Software Foundation + + (ASLv2) Amazon Web Services SDK + The following NOTICE information applies: + Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + This product includes software developed by + Amazon Technologies, Inc (http://www.amazon.com/). + + ********************** + THIRD PARTY COMPONENTS + ********************** + This software includes third party software subject to the following copyrights: + - XML parsing and utility functions from JetS3t - Copyright 2006-2009 James Murty. + - PKCS#1 PEM encoded private key parsing and utility functions from oauth.googlecode.com - Copyright 1998-2010 AOL Inc. + + From 0a35041a26e369d3c1e9eae55dd70296f2741de5 Mon Sep 17 00:00:00 2001 From: Christopher Currie Date: Thu, 19 Oct 2017 08:25:21 -0700 Subject: [PATCH 4/4] Limit NOTICE to AWS SDK --- .../src/main/resources/META-INF/NOTICE | 38 ------------------- 1 file changed, 38 deletions(-) diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE index bfc54bc588fe..6d93ceb3f98e 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-service-api-nar/src/main/resources/META-INF/NOTICE @@ -10,44 +10,6 @@ Apache Software License v2 The following binary components are provided under the Apache Software License v2 - (ASLv2) Apache HttpComponents - The following NOTICE information applies: - Apache HttpClient - Copyright 1999-2014 The Apache Software Foundation - - Apache HttpCore - Copyright 2005-2014 The Apache Software Foundation - - This project contains annotations derived from JCIP-ANNOTATIONS - Copyright (c) 2005 Brian Goetz and Tim Peierls. See http://www.jcip.net - - (ASLv2) Joda Time - The following NOTICE information applies: - This product includes software developed by - Joda.org (http://www.joda.org/). - - (ASLv2) Apache Commons Codec - The following NOTICE information applies: - Apache Commons Codec - Copyright 2002-2014 The Apache Software Foundation - - src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java - contains test data from http://aspell.net/test/orig/batch0.tab. - Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org) - - =============================================================================== - - The content of package org.apache.commons.codec.language.bm has been translated - from the original php source code available at http://stevemorse.org/phoneticinfo.htm - with permission from the original authors. - Original source copyright: - Copyright (c) 2008 Alexander Beider & Stephen P. Morse. - - (ASLv2) Apache Commons Logging - The following NOTICE information applies: - Apache Commons Logging - Copyright 2003-2013 The Apache Software Foundation - (ASLv2) Amazon Web Services SDK The following NOTICE information applies: Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.