I have written a processor that will take an image and tile it into 512x512 images. I now want to write a processor to merge them back together again. I see MergeContent and I would like to extend it. 1st off does this seem reasonable? If so: I'm working in my own bundle and my current hold up is I can't figure out how to put in the correct dependancy's in maven (nifi-mitre-bundle/mitre-nifi-processors/pom.xml)
I tried <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-standard-bundle</artifactId> <version>0.3.0</version> </dependency> Maven couldn't find any of the references to from my MergeImageTiles to the MergeContent that it extends [ERROR] /home/plj/nifi-0.3.0/nifi-mitre-bundle/nifi-mitre-processors/src/main/java/org/mitre/nifi/MergeImageTiles.java:[13,42] error: package org.apache.nifi.processors.standard does not exist So I tried <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-standard-processors</artifactId> <version>0.3.0</version> </dependency> this compiled but then wouldn't run as it looked for dependencies at RunTime Thoughts? -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/Merge-Binary-tp4872.html Sent from the Apache NiFi Developer List mailing list archive at Nabble.com.
