Skip to content

Commit

Permalink
deps: Upgrade the JIRA REST client to version 6.0.1
Browse files Browse the repository at this point in the history
Probably because the latest version of `jira-rest-java-client-app` is
not hosted on Maven Central [1], Renovate seems to have missed this.

As the client relies on `jakarta.ws.rs:jakarta.ws.rs-api:2.1.6` to be
available transitively, which is not the case anymore with
`org.glassfish.jersey.core:jersey-common:2.42`, add that dependency
directly until [2] is resolved.

[1]: https://mvnrepository.com/artifact/com.atlassian.jira/jira-rest-java-client-app
[2]: https://ecosystem.atlassian.net/browse/JRJC-262

Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Dec 16, 2024
1 parent 81f58ea commit b34ead6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ hikari = "6.2.1"
hoplite = "2.9.0"
jackson = "2.18.2"
jakartaMail = "2.0.1"
jakartaRestApi = "2.1.6"
jgit = "7.1.0.202411261347-r"
jiraRestClient = "5.2.7"
jiraRestClient = "6.0.1"
jruby = "9.4.9.0"
jslt = "0.1.14"
jsonSchemaValidator = "1.5.4"
Expand Down Expand Up @@ -115,6 +116,7 @@ jackson-dataformat-yaml = { module = "com.fasterxml.jackson.dataformat:jackson-d
jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version.ref = "jackson" }
jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version.ref = "jackson" }
jakartaMail = { module = "com.sun.mail:jakarta.mail", version.ref = "jakartaMail" }
jakartaRestApi = { module = "jakarta.ws.rs:jakarta.ws.rs-api", version.ref = "jakartaRestApi" }
jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version.ref = "jgit" }
jgit-ssh-apache = { module = "org.eclipse.jgit:org.eclipse.jgit.ssh.apache", version.ref = "jgit" }
jgit-ssh-apache-agent = { module = "org.eclipse.jgit:org.eclipse.jgit.ssh.apache.agent", version.ref = "jgit" }
Expand Down
7 changes: 6 additions & 1 deletion notifier/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,15 @@ dependencies {

implementation("org.jetbrains.kotlin:kotlin-scripting-common")
implementation("org.jetbrains.kotlin:kotlin-scripting-jvm-host")

implementation(libs.jakartaMail)

// Required due to https://ecosystem.atlassian.net/browse/JRJC-262.
implementation(libs.jakartaRestApi)

implementation(libs.jiraRestClient.api)
implementation(libs.jiraRestClient.app) {
exclude("org.slf4j", "slf4j-log4j12")
exclude("org.apache.logging.log4j", "log4j-slf4j2-impl")
.because("the SLF4J implementation from Log4j 2 is used")
}

Expand Down

0 comments on commit b34ead6

Please sign in to comment.