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:
parent
0ff93519a4
commit
f81149324f
9
pom.xml
9
pom.xml
@ -361,6 +361,15 @@
|
|||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>boringssl</id>
|
<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>
|
<properties>
|
||||||
<tcnative.artifactId>netty-tcnative-boringssl-static</tcnative.artifactId>
|
<tcnative.artifactId>netty-tcnative-boringssl-static</tcnative.artifactId>
|
||||||
<tcnative.classifier />
|
<tcnative.classifier />
|
||||||
|
Loading…
Reference in New Issue
Block a user