|
155 | 155 | <artifactId>commons-codec</artifactId> |
156 | 156 | <version>1.16.0</version> |
157 | 157 | </dependency> |
| 158 | + <dependency> |
| 159 | + <groupId>xerces</groupId> |
| 160 | + <artifactId>xercesImpl</artifactId> |
| 161 | + <version>2.12.2</version> |
| 162 | + </dependency> |
| 163 | + <dependency> |
| 164 | + <groupId>xalan</groupId> |
| 165 | + <artifactId>xalan</artifactId> |
| 166 | + <version>2.7.2</version> |
| 167 | + <exclusions> |
| 168 | + <exclusion> |
| 169 | + <groupId>xml-apis</groupId> |
| 170 | + <artifactId>xml-apis</artifactId> |
| 171 | + </exclusion> |
| 172 | + </exclusions> |
| 173 | + </dependency> |
| 174 | + <dependency> |
| 175 | + <groupId>xml-apis</groupId> |
| 176 | + <artifactId>xml-apis</artifactId> |
| 177 | + <version>1.4.01</version> |
| 178 | + </dependency> |
158 | 179 | <dependency> |
159 | 180 | <groupId>org.projectlombok</groupId> |
160 | 181 | <artifactId>lombok</artifactId> |
|
341 | 362 | </goals> |
342 | 363 | <configuration> |
343 | 364 | <relocations> |
| 365 | + <relocation> |
| 366 | + <pattern>javax.xml</pattern> |
| 367 | + <shadedPattern>hidden.jcp.javax.xml</shadedPattern> |
| 368 | + </relocation> |
344 | 369 | <relocation> |
345 | 370 | <pattern>org.apache.commons</pattern> |
346 | 371 | <shadedPattern>hidden.jcp.org.apache.commons</shadedPattern> |
|
349 | 374 | <pattern>license</pattern> |
350 | 375 | <shadedPattern>hidden.jcp.license</shadedPattern> |
351 | 376 | </relocation> |
| 377 | + <relocation> |
| 378 | + <pattern>org.xml</pattern> |
| 379 | + <shadedPattern>hidden.jcp.org.xml</shadedPattern> |
| 380 | + </relocation> |
| 381 | + <relocation> |
| 382 | + <pattern>org.apache.xpath</pattern> |
| 383 | + <shadedPattern>hidden.jcp.org.apache.xpath</shadedPattern> |
| 384 | + </relocation> |
| 385 | + <relocation> |
| 386 | + <pattern>org.apache.xml</pattern> |
| 387 | + <shadedPattern>hidden.jcp.org.apache.xml</shadedPattern> |
| 388 | + </relocation> |
| 389 | + <relocation> |
| 390 | + <pattern>org.apache.wml</pattern> |
| 391 | + <shadedPattern>hidden.jcp.org.apache.wml</shadedPattern> |
| 392 | + </relocation> |
| 393 | + <relocation> |
| 394 | + <pattern>org.apache.regexp</pattern> |
| 395 | + <shadedPattern>hidden.jcp.org.apache.regexp</shadedPattern> |
| 396 | + </relocation> |
352 | 397 | <relocation> |
353 | 398 | <pattern>org.apache.html</pattern> |
354 | 399 | <shadedPattern>hidden.jcp.org.apache.html</shadedPattern> |
355 | 400 | </relocation> |
| 401 | + <relocation> |
| 402 | + <pattern>org.apache.bcel</pattern> |
| 403 | + <shadedPattern>hidden.jcp.org.apache.bcel</shadedPattern> |
| 404 | + </relocation> |
| 405 | + <relocation> |
| 406 | + <pattern>org.apache.xerces</pattern> |
| 407 | + <shadedPattern>hidden.jcp.org.apache.xerces</shadedPattern> |
| 408 | + </relocation> |
| 409 | + <relocation> |
| 410 | + <pattern>org.apache.xalan</pattern> |
| 411 | + <shadedPattern>hidden.jcp.org.apache.xalan</shadedPattern> |
| 412 | + </relocation> |
| 413 | + <relocation> |
| 414 | + <pattern>org.w3c</pattern> |
| 415 | + <shadedPattern>hidden.jcp.org.w3c</shadedPattern> |
| 416 | + </relocation> |
356 | 417 | <relocation> |
357 | 418 | <pattern>java_cup</pattern> |
358 | 419 | <shadedPattern>hidden.jcp.java_cup</shadedPattern> |
|
373 | 434 | <include>commons-codec:*</include> |
374 | 435 | <include>commons-text:*</include> |
375 | 436 | <include>org.apache.commons:*</include> |
| 437 | + <include>xerces:*</include> |
| 438 | + <include>xalan:*</include> |
376 | 439 | <include>com.igormaznitsa:*</include> |
| 440 | + <include>xml-apis:*</include> |
377 | 441 | </includes> |
378 | 442 | </artifactSet> |
379 | 443 | <filters> |
|
387 | 451 | <exclude>META-INF/*.SF</exclude> |
388 | 452 | <exclude>META-INF/*.DSA</exclude> |
389 | 453 | <exclude>META-INF/*.RSA</exclude> |
| 454 | + <exclude>META-INF/services/javax.xml.*</exclude> |
390 | 455 | <exclude>META-INF/services/org.apache.*</exclude> |
| 456 | + <exclude>META-INF/services/org.w3c.*</exclude> |
| 457 | + <exclude>META-INF/services/org.xml.*</exclude> |
391 | 458 | </excludes> |
392 | 459 | </filter> |
393 | 460 | </filters> |
|
0 commit comments