[ 
https://issues.apache.org/jira/browse/NIFI-9994?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17532912#comment-17532912
 ] 

Kyle Rotte commented on NIFI-9994:
----------------------------------

[~exceptionfactory] - Here you go. Was I supposed to remove the reference to 
nifi-standard-services-api-nar?

{code:java}
<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>com.abc</groupId>
        <artifactId>abc-processor-bundle</artifactId>
        <version>11.0.23</version>
    </parent>

    <artifactId>nifi-elasticsearch-6-nar</artifactId>
    <packaging>nar</packaging>
    <properties>
        <maven.javadoc.skip>true</maven.javadoc.skip>
        <source.skip>true</source.skip>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-standard-services-api-nar</artifactId>
            <version>${nifi.version}</version>
            <type>nar</type>
        </dependency>
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-elasticsearch-client-service-api-nar</artifactId>
            <version>${nifi.version}</version>
            <type>nar</type>
        </dependency>
        <dependency>
            <groupId>com.abc</groupId>
            <artifactId>nifi-elasticsearch-6-processors</artifactId>
            <version>${project.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.kafka</groupId>
                    <artifactId>kafka_2.13</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.nifi</groupId>
                <artifactId>nifi-nar-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>
 {code}
 

> nifi-standard-services-api-nar is missing 
> nifi-elasticsearch-client-service-api
> -------------------------------------------------------------------------------
>
>                 Key: NIFI-9994
>                 URL: https://issues.apache.org/jira/browse/NIFI-9994
>             Project: Apache NiFi
>          Issue Type: Task
>          Components: Core Framework
>    Affects Versions: 1.16.1
>            Reporter: Kyle Rotte
>            Assignee: David Handermann
>            Priority: Minor
>
> The nifi-standard-services-api-nar nar needs to have the 
> nifi-elasticsearch-client-service-api jar added to it (a newly added jar) 
> added to it. This will enable people to create new processors that leverage 
> the ElasticSearchClientService.



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

Reply via email to