Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The MarkLogic NiFi connector simplifies integrating [Apache NiFi](https://nifi.apache.org/) with MarkLogic, allowing for
data to be easily written to and read from MarkLogic. The connector consists of a set of custom NiFi processors and
controller services which can be used in NiFi flows for integrating with MarkLogic. The connector has been developed
and tested on NiFi 2.5.0; it may work in more recent versions of NiFi too.
and tested on NiFi 2.9.0; it may work with other NiFi 2.x versions as well.

Please see the [Getting Started guide](https://marklogic.github.io/nifi/getting-started)
for information on obtaining the connector, installing it, and using it.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export data to and from MarkLogic, along with running batch processes on data al
The connector has the following system requirements:

* Apache NiFi 2.0 or higher; the connector may run successfully on earlier versions of NiFi but it is only
actively tested on NiFi 2.5.0 and higher.
actively tested on NiFi 2.9.0 and higher.
* MarkLogic 10 or higher, though processors that do not depend on any functionality in MarkLogic 10 or later will
run fine on MarkLogic 9.

Expand Down
22 changes: 11 additions & 11 deletions nifi-marklogic-processors/flows-for-manual-testing.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "ORIGINAL",
Expand Down Expand Up @@ -153,7 +153,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "FAILURE",
Expand Down Expand Up @@ -272,7 +272,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "RESULTS",
Expand Down Expand Up @@ -642,7 +642,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "FAILURE!!!!",
Expand Down Expand Up @@ -761,7 +761,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "QUERY RESULT",
Expand Down Expand Up @@ -1137,7 +1137,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"character-set": "UTF-8",
Expand Down Expand Up @@ -1230,7 +1230,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "AFTER:",
Expand Down Expand Up @@ -1649,7 +1649,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "RESULTS",
Expand Down Expand Up @@ -1866,7 +1866,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "LOGERROR!!!",
Expand Down Expand Up @@ -1985,7 +1985,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"character-set": "UTF-8",
Expand Down Expand Up @@ -2078,7 +2078,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-standard-nar",
"version": "2.5.0"
"version": "2.9.0"
},
"properties": {
"Log prefix": "ORIGINAL",
Expand Down
2 changes: 1 addition & 1 deletion nifi-marklogic-processors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.5.5</version>
<executions>
<execution>
<goals>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.apache.nifi</groupId>
<artifactId>nifi-extension-bundles</artifactId>
<version>2.5.0</version>
<version>2.9.0</version>
</parent>

<version>2.0.0</version>
Expand All @@ -33,7 +33,7 @@
<properties>
<!-- Nifi 2 requires Java 21 -->
<maven.compiler.release>21</maven.compiler.release>
<nifi.version>2.5.0</nifi.version>
<nifi.version>${project.parent.version}</nifi.version>
<marklogicnar.version>2.0.0</marklogicnar.version>
<marklogicclientapi.version>8.0.0</marklogicclientapi.version>
<spring.version>6.2.15</spring.version>
Expand Down
Loading