mirror of https://github.com/apache/nifi.git
NIFI-4645 make sure the grpc bundle is only built and nar included IF not building on powerpc arch. This closes #2305
This commit is contained in:
parent
73fa0429f0
commit
9ea9996b36
|
@ -491,11 +491,6 @@
|
||||||
<artifactId>nifi-gcp-nar</artifactId>
|
<artifactId>nifi-gcp-nar</artifactId>
|
||||||
<type>nar</type>
|
<type>nar</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.nifi</groupId>
|
|
||||||
<artifactId>nifi-grpc-nar</artifactId>
|
|
||||||
<type>nar</type>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.nifi</groupId>
|
<groupId>org.apache.nifi</groupId>
|
||||||
<artifactId>nifi-stateful-analysis-nar</artifactId>
|
<artifactId>nifi-stateful-analysis-nar</artifactId>
|
||||||
|
@ -538,6 +533,22 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<profiles>
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>supportpowerpc</id>
|
||||||
|
<activation>
|
||||||
|
<os>
|
||||||
|
<family>unix</family>
|
||||||
|
<arch>ppc</arch>
|
||||||
|
</os>
|
||||||
|
</activation>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.nifi</groupId>
|
||||||
|
<artifactId>nifi-grpc-nar</artifactId>
|
||||||
|
<type>nar</type>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>rpm</id>
|
<id>rpm</id>
|
||||||
<activation>
|
<activation>
|
||||||
|
|
|
@ -87,7 +87,6 @@
|
||||||
<module>nifi-cybersecurity-bundle</module>
|
<module>nifi-cybersecurity-bundle</module>
|
||||||
<module>nifi-parquet-bundle</module>
|
<module>nifi-parquet-bundle</module>
|
||||||
<module>nifi-extension-utils</module>
|
<module>nifi-extension-utils</module>
|
||||||
<module>nifi-grpc-bundle</module>
|
|
||||||
<module>nifi-redis-bundle</module>
|
<module>nifi-redis-bundle</module>
|
||||||
<module>nifi-metrics-reporting-bundle</module>
|
<module>nifi-metrics-reporting-bundle</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
@ -135,6 +134,18 @@
|
||||||
<buildBranch />
|
<buildBranch />
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>supportpowerpc</id>
|
||||||
|
<activation>
|
||||||
|
<os>
|
||||||
|
<family>unix</family>
|
||||||
|
<arch>ppc</arch>
|
||||||
|
</os>
|
||||||
|
</activation>
|
||||||
|
<modules>
|
||||||
|
<module>nifi-grpc-bundle</module>
|
||||||
|
</modules>
|
||||||
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
|
|
Loading…
Reference in New Issue