|
47 | 47 | <legal><![CDATA[[INFO] Any downloads listed may be third party software. Microsoft grants you no rights for third party software.]]></legal> |
48 | 48 | <jacoco.min.linecoverage>0.60</jacoco.min.linecoverage> |
49 | 49 | <jacoco.min.branchcoverage>0.60</jacoco.min.branchcoverage> |
| 50 | + <boring-ssl-classifier></boring-ssl-classifier> |
50 | 51 | </properties> |
51 | 52 |
|
52 | 53 | <developers> |
|
103 | 104 | <artifactId>reactor-core</artifactId> |
104 | 105 | <version>3.4.7</version> <!-- {x-version-update;io.projectreactor:reactor-core;external_dependency} --> |
105 | 106 | </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>io.netty</groupId> |
| 109 | + <artifactId>netty-tcnative-boringssl-static</artifactId> |
| 110 | + <version>2.0.40.Final</version> <!-- {x-version-update;io.netty:netty-tcnative-boringssl-static;external_dependency} --> |
| 111 | + <classifier>${boring-ssl-classifier}</classifier> |
| 112 | + </dependency> |
106 | 113 | <dependency> |
107 | 114 | <groupId>io.projectreactor</groupId> |
108 | 115 | <artifactId>reactor-test</artifactId> |
109 | 116 | <version>3.4.7</version> <!-- {x-version-update;io.projectreactor:reactor-test;external_dependency} --> |
110 | 117 | <scope>test</scope> |
111 | 118 | </dependency> |
112 | | - <dependency> |
113 | | - <groupId>io.netty</groupId> |
114 | | - <artifactId>netty-tcnative-boringssl-static</artifactId> |
115 | | - <version>2.0.40.Final</version> <!-- {x-version-update;io.netty:netty-tcnative-boringssl-static;external_dependency} --> |
116 | | - </dependency> |
117 | 119 | <dependency> |
118 | 120 | <groupId>org.junit.jupiter</groupId> |
119 | 121 | <artifactId>junit-jupiter-api</artifactId> |
|
274 | 276 | </plugins> |
275 | 277 | </build> |
276 | 278 | </profile> |
| 279 | + |
| 280 | + <profile> |
| 281 | + <id>native-linux</id> |
| 282 | + <activation> |
| 283 | + <property> |
| 284 | + <name>native-linux</name> |
| 285 | + </property> |
| 286 | + </activation> |
| 287 | + |
| 288 | + <properties> |
| 289 | + <boring-ssl-classifier>linux-x86_64</boring-ssl-classifier> |
| 290 | + </properties> |
| 291 | + </profile> |
| 292 | + |
| 293 | + <profile> |
| 294 | + <id>native-macos</id> |
| 295 | + <activation> |
| 296 | + <property> |
| 297 | + <name>native-macos</name> |
| 298 | + </property> |
| 299 | + </activation> |
| 300 | + |
| 301 | + <properties> |
| 302 | + <boring-ssl-classifier>osx-x86_64</boring-ssl-classifier> |
| 303 | + </properties> |
| 304 | + </profile> |
| 305 | + |
| 306 | + <profile> |
| 307 | + <id>native-windows</id> |
| 308 | + <activation> |
| 309 | + <property> |
| 310 | + <name>native-windows</name> |
| 311 | + </property> |
| 312 | + </activation> |
| 313 | + |
| 314 | + <properties> |
| 315 | + <boring-ssl-classifier>windows-x86_64</boring-ssl-classifier> |
| 316 | + </properties> |
| 317 | + </profile> |
277 | 318 | </profiles> |
278 | 319 | </project> |
0 commit comments