|
41 | 41 | <artifactId>jsonsergen</artifactId> |
42 | 42 | <version>0.0.5</version> |
43 | 43 | </dependency> |
44 | | - <dependency> |
45 | | - <groupId>io.netty</groupId> |
46 | | - <artifactId>netty-transport-native-kqueue</artifactId> |
47 | | - <version>${netty.version}</version> |
48 | | - <classifier>osx-x86_64</classifier> |
49 | | - </dependency> |
50 | | - <dependency> |
51 | | - <groupId>io.netty</groupId> |
52 | | - <artifactId>netty-transport-native-epoll</artifactId> |
53 | | - <version>${netty.version}</version> |
54 | | - <classifier>linux-x86_64</classifier> |
55 | | - </dependency> |
56 | 44 | <dependency> |
57 | 45 | <groupId>com.github.ben-manes.caffeine</groupId> |
58 | 46 | <artifactId>caffeine</artifactId> |
|
149 | 137 |
|
150 | 138 | <profiles> |
151 | 139 | <profile> |
152 | | - <id>Linux</id> |
| 140 | + <id>linux-x86_64</id> |
| 141 | + <activation> |
| 142 | + <os> |
| 143 | + <family>linux</family> |
| 144 | + <arch>x86_64</arch> |
| 145 | + </os> |
| 146 | + </activation> |
| 147 | + <dependencies> |
| 148 | + <dependency> |
| 149 | + <groupId>io.netty</groupId> |
| 150 | + <artifactId>netty-transport-native-io_uring</artifactId> |
| 151 | + <version>${netty.version}</version> |
| 152 | + <classifier>linux-x86_64</classifier> |
| 153 | + </dependency> |
| 154 | + </dependencies> |
| 155 | + </profile> |
| 156 | + |
| 157 | + <profile> |
| 158 | + <id>linux-amd64</id> |
153 | 159 | <activation> |
154 | | - <activeByDefault>false</activeByDefault> |
| 160 | + <os> |
| 161 | + <family>linux</family> |
| 162 | + <arch>amd64</arch> |
| 163 | + </os> |
155 | 164 | </activation> |
156 | 165 | <dependencies> |
157 | 166 | <dependency> |
|
162 | 171 | </dependency> |
163 | 172 | </dependencies> |
164 | 173 | </profile> |
| 174 | + |
| 175 | + <profile> |
| 176 | + <id>linux-aarch64</id> |
| 177 | + <activation> |
| 178 | + <os> |
| 179 | + <family>linux</family> |
| 180 | + <arch>aarch64</arch> |
| 181 | + </os> |
| 182 | + </activation> |
| 183 | + <dependencies> |
| 184 | + <dependency> |
| 185 | + <groupId>io.netty</groupId> |
| 186 | + <artifactId>netty-transport-native-io_uring</artifactId> |
| 187 | + <version>${netty.version}</version> |
| 188 | + <classifier>linux-aarch_64</classifier> |
| 189 | + </dependency> |
| 190 | + </dependencies> |
| 191 | + </profile> |
| 192 | + |
| 193 | + <profile> |
| 194 | + <id>osx-x86_64</id> |
| 195 | + <activation> |
| 196 | + <os> |
| 197 | + <family>mac</family> |
| 198 | + <arch>x86_64</arch> |
| 199 | + </os> |
| 200 | + </activation> |
| 201 | + <dependencies> |
| 202 | + <dependency> |
| 203 | + <groupId>io.netty</groupId> |
| 204 | + <artifactId>netty-resolver-dns-native-macos</artifactId> |
| 205 | + <version>${netty.version}</version> |
| 206 | + <classifier>osx-x86_64</classifier> |
| 207 | + </dependency> |
| 208 | + <dependency> |
| 209 | + <groupId>io.netty</groupId> |
| 210 | + <artifactId>netty-transport-native-kqueue</artifactId> |
| 211 | + <version>${netty.version}</version> |
| 212 | + <classifier>osx-x86_64</classifier> |
| 213 | + </dependency> |
| 214 | + </dependencies> |
| 215 | + </profile> |
| 216 | + |
| 217 | + <profile> |
| 218 | + <id>osx-aarch64</id> |
| 219 | + <activation> |
| 220 | + <os> |
| 221 | + <family>mac</family> |
| 222 | + <arch>aarch64</arch> |
| 223 | + </os> |
| 224 | + </activation> |
| 225 | + <dependencies> |
| 226 | + <dependency> |
| 227 | + <groupId>io.netty</groupId> |
| 228 | + <artifactId>netty-resolver-dns-native-macos</artifactId> |
| 229 | + <version>${netty.version}</version> |
| 230 | + <classifier>osx-aarch_64</classifier> |
| 231 | + </dependency> |
| 232 | + <dependency> |
| 233 | + <groupId>io.netty</groupId> |
| 234 | + <artifactId>netty-transport-native-kqueue</artifactId> |
| 235 | + <version>${netty.version}</version> |
| 236 | + <classifier>osx-aarch_64</classifier> |
| 237 | + </dependency> |
| 238 | + </dependencies> |
| 239 | + </profile> |
| 240 | + |
165 | 241 | </profiles> |
166 | 242 |
|
167 | 243 | </project> |
0 commit comments