mirror of
https://github.com/apache/nifi.git
synced 2025-02-07 02:28:31 +00:00
- Added ProxyConfigurationService to manage centralized proxy configurations - Adopt ProxyConfigurationService at FTP and HTTP processors NIFI-4175 - Add HTTP proxy support to *SFTP processors This closes #2018. Signed-off-by: Koji Kawamura <ijokarumawak@apache.org> NIFI-4199: Add ProxyConfigurationService to SFTP processors - Fixed check style issue - Use the same proxy related PropertyDescriptors from FTPTransfer and SFTPTransfer - Dropped FlowFile EL evaluation support to make it align with other processors spec, Now it supports VARIABLE_REGISTRY - Added ProxyConfigurationService to SFTP processors - Added SOCKS proxy support to SFTP processors NIFI-4199: Added ProxyConfigurationService to ElasticsearchHttp processors - ElasticsearchHttp processors now support SOCKS proxy, too - Added proxy support to PutElasticsearchHttpRecord - Moved more common property descriptors to AbstractElasticsearchHttpProcessor and just return static unmodifiable property descriptor list at each implementation processors NIFI-4196 - Expose AWS proxy authentication settings NIFI-4196 - Fix jUnit errors This closes #2016. Signed-off-by: Koji Kawamura <ijokarumawak@apache.org> NIFI-4199: Add ProxyConfigService to AWS processors - Applied ProxyConfigService to S3 processors - Added proxy support to following processors: - PutKinesisFirehose, PutKinesisStream - PutDynamoDB, DeleteDynamoDB, GetDynamoDB - PutKinesisStream - All AWS processors support HTTP proxy now NIFI-4199: Add ProxyConfigService to Azure processors NIFI-4199: More explicit validation and docs for Proxy spec - Each processor has different supporting Proxy specs - Show supported spec to ProxyConfigurationService property doc - Validate not only Proxy type, but also with Authentication NIFI-4199: Incorporated review comments - Fixed TestListS3 property descriptor check - Separate name and displayName This closes #2016 This closes #2018 This closes #2704 Signed-off-by: Mike Thomsen <mikerthomsen@gmail.com>
50 lines
2.6 KiB
XML
50 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You 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.
|
|
-->
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-nar-bundles</artifactId>
|
|
<version>1.7.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>nifi-standard-services</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>nifi-distributed-cache-client-service-api</module>
|
|
<module>nifi-distributed-cache-services-bundle</module>
|
|
<module>nifi-load-distribution-service-api</module>
|
|
<module>nifi-http-context-map-api</module>
|
|
<module>nifi-lookup-service-api</module>
|
|
<module>nifi-lookup-services-bundle</module>
|
|
<module>nifi-ssl-context-bundle</module>
|
|
<module>nifi-ssl-context-service-api</module>
|
|
<module>nifi-http-context-map-bundle</module>
|
|
<module>nifi-standard-services-api-nar</module>
|
|
<module>nifi-dbcp-service-api</module>
|
|
<module>nifi-dbcp-service-bundle</module>
|
|
<module>nifi-hbase-client-service-api</module>
|
|
<module>nifi-hbase_1_1_2-client-service-bundle</module>
|
|
<module>nifi-schema-registry-service-api</module>
|
|
<module>nifi-record-serialization-service-api</module>
|
|
<module>nifi-record-serialization-services-bundle</module>
|
|
<module>nifi-hwx-schema-registry-bundle</module>
|
|
<module>nifi-kerberos-credentials-service-api</module>
|
|
<module>nifi-kerberos-credentials-service-bundle</module>
|
|
<module>nifi-proxy-configuration-api</module>
|
|
<module>nifi-proxy-configuration-bundle</module>
|
|
</modules>
|
|
</project>
|