Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ hibernateVersion=5.6.15.Final
httpclientVersion=3.1
httpcomponentsVersion=4.5.14
hsqldbVersion=2.7.4
# jackson-annotations is versioned independently of core/databind: as of
# Jackson 2.20 FasterXML stopped cutting patch releases of jackson-annotations
# (its API is stable), so it only ships as 2.22 while core/databind get 2.22.x
# patches. Keep this on the latest existing annotations release.
jacksonAnnotationsVersion=2.22
jacksonDatabindVersion=2.22.2
jacksonVersion=2.22
jacksonVersion=2.22.2
janinoVersion=3.1.12
jasyptVersion=1.9.3
# Match the jjwt version pulled in transitively by uPortal-soffit-core.
Expand Down
2 changes: 1 addition & 1 deletion notification-portlet-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "Simple data model for Notifications used in integrations"

dependencies {
compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonAnnotationsVersion}"
compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
compile "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}"
compile "commons-lang:commons-lang:${commonsLangVersion}"
Expand Down
Loading