Created 06-30-2017 10:01 AM
Hi, as title, I cannot get the HDF nifi source code from http://repo.hortonworks.com/content/repositories/releases/org/apache/nifi/nifi-standard-processors/.
how to got it?
<dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-standard-processors</artifactId> <version>1.0.0.2.0.0.0-579</version> </dependency>
Created 06-30-2017 01:17 PM
Are you trying to get the JAR for standard processors, or the actual source code? Those are two different things.
If you are trying to get the JAR then what you have above seems correct, but you would need to define the hortonworks Maven repo in your Maven settings.xml
If you are trying to get the source code, then I think the closes you can come is to get the Apache code that is closest to the HDF release. That version number means Apache NiFi 1.0.0 and HDF 2.0.0 so the Apache code for that would be:
Created 06-30-2017 07:55 PM
One caveat is for HDF 3.0.x, it is based on NiFi 1.2.0 but is actually much closer to 1.3.0; HDF 3.0.0 was built before NiFi 1.3.0 was officially released. Otherwise the base Apache version is the closest, like Bryan said.
Created 07-01-2017 12:17 PM
Got it. Thanks.