Skip to content

Commit

Permalink
Bump netty and logback
Browse files Browse the repository at this point in the history
  • Loading branch information
dotasek committed Dec 7, 2023
1 parent 8286f69 commit 80cdd19
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 6 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
implementation("ca.uhn.hapi.fhir", "org.hl7.fhir.convertors", property("fhirCoreVersion").toString())
implementation("ca.uhn.hapi.fhir", "org.hl7.fhir.validation", property("fhirCoreVersion").toString())
implementation("org.eclipse.jgit", "org.eclipse.jgit", "6.7.0.202309050840-r")
implementation("ch.qos.logback", "logback-classic", "1.2.3")
implementation("ch.qos.logback", "logback-classic", property("logbackVersion").toString())
implementation("com.google.code.gson", "gson", "2.8.9")
implementation("commons-beanutils","commons-beanutils")

Expand Down Expand Up @@ -175,10 +175,13 @@ dependencies {
implementation("org.eclipse.jetty.http2:http2-http-client-transport:11.0.17") {
because("previous versions have a bug impacting this application")
}
implementation("io.netty:netty-handler:4.1.100.Final") {
implementation("io.netty:netty-handler:" + property("nettyConstrainedVersion").toString()) {
because("previous versions have a bug impacting this application")
}
implementation("io.netty:netty-transport-classes-epoll:" + property("nettyConstrainedVersion").toString()) {
because("previous versions have a bug impacting this application")
}
implementation("io.netty:netty-transport-classes-epoll:4.1.100.Final") {
implementation("io.netty:netty-transport-native-epoll:" + property("nettyConstrainedVersion").toString()) {
because("previous versions have a bug impacting this application")
}
}
Expand Down
5 changes: 3 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
fhirCoreVersion = 6.2.6-SNAPSHOT
apachePoiVersion = 5.2.1
jacksonVersion = 2.14.0
jacksonVersion = 2.16.0
apacheHttpcomponentsVersion = 4.5.13
apacheHttpcomponents5Version = 5.0.4
apacheJenaVersion = 4.2.0
log4jVersion = 2.17.1

slf4jVersion = 1.7.36
jettyVersion = 11.0.17
logbackVersion = 1.2.9
logbackVersion = 1.2.13
nettyConstrainedVersion = 4.1.101.Final

## Leave the subsequent line blank for additional properties appended by azure builds

0 comments on commit 80cdd19

Please sign in to comment.