mirror of
https://github.com/apache/nifi.git
synced 2025-02-09 11:35:05 +00:00
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.
43 lines
1.8 KiB
XML
43 lines
1.8 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-graph-bundle</artifactId>
|
|
<version>1.10.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>nifi-graph-client-service-api-nar</artifactId>
|
|
<packaging>nar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-standard-services-api-nar</artifactId>
|
|
<version>1.10.0-SNAPSHOT</version>
|
|
<type>nar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-graph-client-service-api</artifactId>
|
|
<version>1.10.0-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|