| Author | DaveJarvis <email> |
|---|---|
| Date | 2023-12-02 15:02:30 GMT-0800 |
| Commit | 9d7ef5ac0e0686b5f4fdd542656f4050035cd63a |
| Parent | 6b91f5b |
| Delta | 7 lines added, 1 line removed, 6-line increase |
| // HTML parsing and rendering | ||
| - implementation 'org.jsoup:jsoup:1.16.1' | ||
| + implementation 'org.jsoup:jsoup:1.17.1' | ||
| implementation 'org.xhtmlrenderer:flying-saucer-core:9.3.1' | ||
| } | ||
| +/** | ||
| + * Mozilla's JavaScript engine, Rhino, is used by the SVG rasterizer. | ||
| + * The application does not support animated SVG files (the HTML | ||
| + * renderer won't honour them), so we can eliminate the dependency from | ||
| + * the binaries. | ||
| + */ | ||
| configurations { | ||
| all*.exclude group: 'org.mozilla', module: 'rhino' | ||