Skip to content

Commit

Permalink
[maven] use jsoup to unescape entities. Fixes #564
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Dec 2, 2021
1 parent f874bbd commit a843131
Show file tree
Hide file tree
Showing 4 changed files with 292 additions and 263 deletions.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jakartaActivatinVersion= 1.2.2
jgitVersion = 5.13.0.202109080827-r
jipsyVersion = 1.1.1
jsonSmartVersion = 2.4.7
jsoupVersion = 1.14.3
junitVersion = 4.13.2
junit5Version = 5.8.1
mailApiVersion = 2.0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies {
api project(':jreleaser-config-yaml')
api project(':jreleaser-config-toml')
api project(':jreleaser-config-json')
api "org.jsoup:jsoup:$jsoupVersion"

implementation "org.apache.maven:maven-plugin-api:$mavenVersion"
implementation "org.apache.maven.shared:maven-shared-utils:$mavenSharedVersion"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public void setName(String name) {
this.name = name;
}

public String getName() {
return name;
}

public String getWebhook() {
return webhook;
}
Expand Down

0 comments on commit a843131

Please sign in to comment.