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 committed by GitHub
parent 0ff93519a4
commit f81149324f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -361,6 +361,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 />