Skip to content

Commit

Permalink
Bump jsoup from 1.13.1 to 1.15.3 (#8)
Browse files Browse the repository at this point in the history
* Bump jsoup from 1.13.1 to 1.15.3

Bumps [jsoup](https://github.com/jhy/jsoup) from 1.13.1 to 1.15.3.
- [Release notes](https://github.com/jhy/jsoup/releases)
- [Changelog](https://github.com/jhy/jsoup/blob/master/CHANGES)
- [Commits](jhy/jsoup@jsoup-1.13.1...jsoup-1.15.3)

---
updated-dependencies:
- dependency-name: org.jsoup:jsoup
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fixo compilo

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Simons <alexsimons9999@gmail.com>
  • Loading branch information
dependabot[bot] and Unthrottled authored Dec 3, 2022
1 parent 159eafb commit c895c27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("org.jsoup:jsoup:1.13.1")
implementation("org.jsoup:jsoup:1.15.3")
implementation("io.unthrottled.doki.build.jvm:doki-build-source-jvm:88.0.4")
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/PatchHTML.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ open class PatchHTML : DefaultTask() {
.forEach {
image ->
image.attr("width", "700")
.parent().insertChildren(0, Element("br"))
.parent()?.insertChildren(0, Element("br"))
}

Files.newBufferedWriter(htmlFileToPatch, StandardOpenOption.TRUNCATE_EXISTING)
Expand Down

0 comments on commit c895c27

Please sign in to comment.