This is an automated email from the ASF dual-hosted git repository. exceptionfactory pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi.git
commit 5ecc12f4051191502bf0b9b18b861c0b862dd2d9 Author: Mark Bean <[email protected]> AuthorDate: Fri Oct 27 18:27:11 2023 +0000 NIFI-12285 Added py4j.url build property The py4j.url property allows the URL for downloading py4j to be specified by a Maven command-line option This closes #7946 Signed-off-by: David Handermann <[email protected]> --- nifi-nar-bundles/nifi-py4j-bundle/nifi-python-framework/pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nifi-nar-bundles/nifi-py4j-bundle/nifi-python-framework/pom.xml b/nifi-nar-bundles/nifi-py4j-bundle/nifi-python-framework/pom.xml index b80f962548..5a81eacfec 100644 --- a/nifi-nar-bundles/nifi-py4j-bundle/nifi-python-framework/pom.xml +++ b/nifi-nar-bundles/nifi-py4j-bundle/nifi-python-framework/pom.xml @@ -27,6 +27,7 @@ <properties> <py4j.version>0.10.9.7</py4j.version> + <py4j.url>https://files.pythonhosted.org/packages/10/30/a58b32568f1623aaad7db22aa9eafc4c6c194b429ff35bdc55ca2726da47/py4j-${py4j.version}-py2.py3-none-any.whl</py4j.url> </properties> <build> @@ -43,7 +44,7 @@ </goals> <phase>generate-resources</phase> <configuration> - <url>https://files.pythonhosted.org/packages/10/30/a58b32568f1623aaad7db22aa9eafc4c6c194b429ff35bdc55ca2726da47/py4j-${py4j.version}-py2.py3-none-any.whl</url> + <url>${py4j.url}</url> <outputFileName>py4j-${py4j.version}.zip</outputFileName> <unpack>true</unpack> <outputDirectory>${project.build.directory}/py4j-${py4j.version}</outputDirectory>
