nifi/nifi-extension-bundles/nifi-graph-bundle/pom.xml

39 lines
1.8 KiB
XML
Raw Normal View History

<?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.
NIFI-5537 Refactored to be named Cypher Bundle instead. NIFI-5537 Added skeletons of services, apis, etc. NIFI-5537 Renamed classes to reflect that they are for cypher and not neo4j specific NIFI-5537 Added start of client API for doing streaming execution. NIFI-5537 Completed refactor of unit and integration tests. NIFI-5537 Added OpenCypherClientService. NIFI-5537 Updated to gremlin-core 3.3.5 to get better SSL configuration options. NIFI-5537 Added SSL support to OpenCypher client service. NIFI-5537 Updated L&N. NIFI-5537 Updated to 1.10.0-SNAPSHOT. NIFI-5537 Removed Mac-specific documentation in int test. NIFI-5537 Updated a few properties to add EL. NIFI-5537 Added GremlinClientService to support gremlin as well. NIFI-5537 refactored everything to be a graph bundle. NIFI-5537 Updated documentation. NIFI-5537 Fixed assembly. NIFI-5537 Updated Jackson. NIFI-5537 Moved MIT section per code review guidance. NIFI-5537 Changed provenance event and made it more explicit. NIFI-5537 Updated processor config file. NIFI-5537 Made changes requested in a code review. NIFI-5537 Added documentation about driver configuration. NIFI-5537 Remove output flowfile if an exception is thrown. NIFI-5537 Updated configuration properties. NIFI-5537 Made port and path configurable in the tinkerpop family of components. NIFI-5537 Upgraded to OpenCypher cypher-gremlin-neo4j-driver 0.9.13 because it's the most recent version that JanusGraph supports. NIFI-5537 Added warning about Janus 0.3.X to int test. NIFI-5537 Added TinkerPopClientService interface. NIFI-5537 Changed to mockito-core from mockito-all. NIFI-5537 Added documentation about Gremlin for first time users w/ NiFi.
2019-02-02 21:11:31 -05:00
See the License for the specific lang`uage 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.nifi</groupId>
<artifactId>nifi-standard-services-api-bom</artifactId>
2023-02-09 17:32:53 -05:00
<version>2.0.0-SNAPSHOT</version>
<relativePath>../nifi-standard-services-api-bom</relativePath>
</parent>
NIFI-5537 Refactored to be named Cypher Bundle instead. NIFI-5537 Added skeletons of services, apis, etc. NIFI-5537 Renamed classes to reflect that they are for cypher and not neo4j specific NIFI-5537 Added start of client API for doing streaming execution. NIFI-5537 Completed refactor of unit and integration tests. NIFI-5537 Added OpenCypherClientService. NIFI-5537 Updated to gremlin-core 3.3.5 to get better SSL configuration options. NIFI-5537 Added SSL support to OpenCypher client service. NIFI-5537 Updated L&N. NIFI-5537 Updated to 1.10.0-SNAPSHOT. NIFI-5537 Removed Mac-specific documentation in int test. NIFI-5537 Updated a few properties to add EL. NIFI-5537 Added GremlinClientService to support gremlin as well. NIFI-5537 refactored everything to be a graph bundle. NIFI-5537 Updated documentation. NIFI-5537 Fixed assembly. NIFI-5537 Updated Jackson. NIFI-5537 Moved MIT section per code review guidance. NIFI-5537 Changed provenance event and made it more explicit. NIFI-5537 Updated processor config file. NIFI-5537 Made changes requested in a code review. NIFI-5537 Added documentation about driver configuration. NIFI-5537 Remove output flowfile if an exception is thrown. NIFI-5537 Updated configuration properties. NIFI-5537 Made port and path configurable in the tinkerpop family of components. NIFI-5537 Upgraded to OpenCypher cypher-gremlin-neo4j-driver 0.9.13 because it's the most recent version that JanusGraph supports. NIFI-5537 Added warning about Janus 0.3.X to int test. NIFI-5537 Added TinkerPopClientService interface. NIFI-5537 Changed to mockito-core from mockito-all. NIFI-5537 Added documentation about Gremlin for first time users w/ NiFi.
2019-02-02 21:11:31 -05:00
<artifactId>nifi-graph-bundle</artifactId>
<packaging>pom</packaging>
<modules>
<module>nifi-graph-test-clients</module>
NIFI-5537 Refactored to be named Cypher Bundle instead. NIFI-5537 Added skeletons of services, apis, etc. NIFI-5537 Renamed classes to reflect that they are for cypher and not neo4j specific NIFI-5537 Added start of client API for doing streaming execution. NIFI-5537 Completed refactor of unit and integration tests. NIFI-5537 Added OpenCypherClientService. NIFI-5537 Updated to gremlin-core 3.3.5 to get better SSL configuration options. NIFI-5537 Added SSL support to OpenCypher client service. NIFI-5537 Updated L&N. NIFI-5537 Updated to 1.10.0-SNAPSHOT. NIFI-5537 Removed Mac-specific documentation in int test. NIFI-5537 Updated a few properties to add EL. NIFI-5537 Added GremlinClientService to support gremlin as well. NIFI-5537 refactored everything to be a graph bundle. NIFI-5537 Updated documentation. NIFI-5537 Fixed assembly. NIFI-5537 Updated Jackson. NIFI-5537 Moved MIT section per code review guidance. NIFI-5537 Changed provenance event and made it more explicit. NIFI-5537 Updated processor config file. NIFI-5537 Made changes requested in a code review. NIFI-5537 Added documentation about driver configuration. NIFI-5537 Remove output flowfile if an exception is thrown. NIFI-5537 Updated configuration properties. NIFI-5537 Made port and path configurable in the tinkerpop family of components. NIFI-5537 Upgraded to OpenCypher cypher-gremlin-neo4j-driver 0.9.13 because it's the most recent version that JanusGraph supports. NIFI-5537 Added warning about Janus 0.3.X to int test. NIFI-5537 Added TinkerPopClientService interface. NIFI-5537 Changed to mockito-core from mockito-all. NIFI-5537 Added documentation about Gremlin for first time users w/ NiFi.
2019-02-02 21:11:31 -05:00
<module>nifi-graph-client-service-api</module>
<module>nifi-graph-client-service-api-nar</module>
<module>nifi-graph-processors</module>
<module>nifi-graph-nar</module>
<module>nifi-neo4j-cypher-service</module>
<module>nifi-neo4j-cypher-service-nar</module>
<module>nifi-other-graph-services</module>
<module>nifi-other-graph-services-nar</module>
</modules>
</project>