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 .cra/.cveignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,10 @@
"cve": "CVE-2025-48924",
"alwaysOmit": true,
"comment": "testing"
},
{
"cve": "CVE-2025-67030",
"alwaysOmit": true,
"comment": "gradle check"
}
]
]
3 changes: 3 additions & 0 deletions clustered/osgi-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ configurations.all {
.using(module('org.ops4j.pax.url:pax-url-link:2.6.11'))
substitute(module('org.ops4j.pax.url:pax-url-aether:2.6.8'))
.using(module('org.ops4j.pax.url:pax-url-aether:3.0.2'))
substitute(module('org.codehaus.plexus:plexus-utils:3.6.0'))
.using(module('org.codehaus.plexus:plexus-utils:3.6.1'))
.because('CVE-2025-67030')
substitute(module('org.apache.commons:commons-lang3:3.12.0'))
.using(module('org.apache.commons:commons-lang3:3.18.0'))
.because('CVE-2025-48924')
Expand Down
2 changes: 1 addition & 1 deletion demos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.ehcache.build.conventions.war' apply false
}

def jettyVersion = '12.1.5'
def jettyVersion = '12.1.8'

dependencies {
api platform("org.eclipse.jetty:jetty-bom:${jettyVersion}")
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ slf4jVersion = 2.0.17
sizeofVersion = 0.4.4

# Terracotta clustered
terracottaPlatformVersion = 5.11.7
terracottaCoreVersion = 5.12.18
terracottaPlatformVersion = 5.11.9
terracottaCoreVersion = 5.12.22
terracottaUtilitiesVersion = 0.0.19

# Test lib versions
Expand Down
3 changes: 3 additions & 0 deletions osgi-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ configurations.all {
.using(module('org.ops4j.pax.url:pax-url-link:2.6.11'))
substitute(module('org.ops4j.pax.url:pax-url-aether:2.6.8'))
.using(module('org.ops4j.pax.url:pax-url-aether:3.0.2'))
substitute(module('org.codehaus.plexus:plexus-utils:3.6.0'))
.using(module('org.codehaus.plexus:plexus-utils:3.6.1'))
.because('CVE-2025-67030')
substitute(module('org.apache.commons:commons-lang3:3.12.0'))
.using(module('org.apache.commons:commons-lang3:3.18.0'))
.because('CVE-2025-48924')
Expand Down
Loading