Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git

Upgrades jsoup library

AuthorDaveJarvis <email>
Date2023-12-02 15:02:30 GMT-0800
Commit9d7ef5ac0e0686b5f4fdd542656f4050035cd63a
Parent6b91f5b
Delta7 lines added, 1 line removed, 6-line increase
build.gradle
// 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'