Automatically use netty-tcnative-boringssl-static on windows (#11317)

Motivation:

We only release a static compiled version of netty-tcnative for windows so we need to ensure we use it when on windows and not try to use a dynamic build version.

Modifications:

Automatically renable the boringssl profile when on windows

Result:

Fixes https://github.com/netty/netty/issues/11302
This commit is contained in:
Norman Maurer 2021-05-26 14:10:45 +02:00
parent bd8b2519b8
commit 9d01814a3b

View File

@ -313,6 +313,15 @@
<profile>
<id>boringssl</id>
<activation>
<!--
Automatically active on windows as we only release static boringssl version of
netty-tcnative for windows.
-->
<os>
<family>windows</family>
</os>
</activation>
<properties>
<tcnative.artifactId>netty-tcnative-boringssl-static</tcnative.artifactId>
<tcnative.classifier />