NIFI-4661 no longer building and including the gprc elements by default. This closes #2318

This commit is contained in:
joewitt 2017-12-05 12:41:16 -05:00 committed by Matt Gilman
parent 9736cb9d33
commit a0f568b69c
No known key found for this signature in database
GPG Key ID: DF61EC19432AEE37
2 changed files with 10 additions and 8 deletions

View File

@ -544,11 +544,12 @@ language governing permissions and limitations under the License. -->
</dependencies> </dependencies>
<profiles> <profiles>
<profile> <profile>
<id>includeifnotppc</id> <id>include-grpc</id>
<!-- This profile handles the inclusion of grpc artifacts. They are notoriously
environment specific in terms of build such as not working in os/arch=ppc64le
or in Centos6 due to requiring a newer version of GLIBC. -->
<activation> <activation>
<os> <activeByDefault>false</activeByDefault>
<arch>!ppc64le</arch>
</os>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

View File

@ -135,11 +135,12 @@
</properties> </properties>
</profile> </profile>
<profile> <profile>
<id>includeifnotppc</id> <id>include-grpc</id>
<!-- This profile handles the inclusion of grpc artifacts. They are notoriously
environment specific in terms of build such as not working in os/arch=ppc64le
or in Centos6 due to requiring a newer version of GLIBC. -->
<activation> <activation>
<os> <activeByDefault>false</activeByDefault>
<arch>!ppc64le</arch>
</os>
</activation> </activation>
<modules> <modules>
<module>nifi-grpc-bundle</module> <module>nifi-grpc-bundle</module>