Skip to content

Commit 636a01d

Browse files
committed
Merge 26.3 to 26.4
Conflicts: gradle.properties
2 parents 4a9ad2f + 94cb7a0 commit 636a01d

2 files changed

Lines changed: 23 additions & 21 deletions

File tree

build.gradle

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ allprojects {
3434
if (project.hasProperty('ossIndexUsername') && project.hasProperty('ossIndexPassword'))
3535
{
3636
analyzers.ossIndex.username = project.property('ossIndexUsername')
37-
analyzers.ossIndex.password = project.property('ossIndexPassword');
37+
analyzers.ossIndex.password = project.property('ossIndexPassword')
38+
analyzers.ossIndex.url = "https://api.guide.sonatype.com"
3839
}
3940
else
4041
{
@@ -43,11 +44,9 @@ allprojects {
4344
formats = ['HTML', 'JUNIT']
4445
skipConfigurations = ['dedupe', 'gwtCompileClasspath', 'gwtRuntimeClasspath', 'developmentOnly']
4546
skipProjects = [':server:testAutomation']
46-
if (project.hasProperty('nvdApiKey'))
47-
{
48-
nvd {
49-
apiKey = "${project.property('nvdApiKey')}"
50-
}
47+
48+
nvd {
49+
datafeedUrl = 'https://dependency-check.github.io/DependencyCheck_Builder/nvd_cache/nvdcve-{0}.json.gz'
5150
}
5251
}
5352
}
@@ -591,16 +590,19 @@ project.tasks.register('ijConfigure') {
591590
task.dependsOn(project.tasks.ijRunConfigurationsSetup)
592591
}
593592

594-
project.tasks.register('purgeNpmAlphaVersions', PurgeNpmAlphaVersions) {
595-
group = GroupNames.NPM_RUN
596-
description = "Given an alpha version prefix for npm packages via the property -P${PurgeNpmAlphaVersions.ALPHA_PREFIX_PROPERTY}=yourPrefix, " +
597-
"removes all packages with versions that match that prefix from Artifactory (e.g., @labkey/components-1.2.3-yourPrefix.0 and @labkey/premium-0.3.4-yourPrefix.1). " +
598-
" Use -PdryRun to see what versions would be deleted without actually doing the deletion."
599-
}
593+
if (project.hasProperty('artifactory_contextUrl') && project.hasProperty('artifactory_user') && project.hasProperty('artifactory_password'))
594+
{
595+
project.tasks.register('purgeNpmAlphaVersions', PurgeNpmAlphaVersions) {
596+
group = GroupNames.NPM_RUN
597+
description = "Given an alpha version prefix for npm packages via the property -P${PurgeNpmAlphaVersions.ALPHA_PREFIX_PROPERTY}=yourPrefix, " +
598+
"removes all packages with versions that match that prefix from Artifactory (e.g., @labkey/components-1.2.3-yourPrefix.0 and @labkey/premium-0.3.4-yourPrefix.1). " +
599+
" Use -PdryRun to see what versions would be deleted without actually doing the deletion."
600+
}
600601

601-
project.tasks.register('purgeNpmVersions', PurgeNpmVersions) {
602-
group = GroupNames.NPM_RUN
603-
description = "Given a package name via -P${PurgeNpmVersions.PACKAGE_NAME_PROP}=name (without the @labkey prefix) and a version list via -P${PurgeNpmVersions.VERSION_LIST_PROP}=fileName for npm package, " +
604-
"removes the versions specified from Artifactory. " +
605-
" Use -PdryRun to see what versions would be deleted without actually doing the deletion."
602+
project.tasks.register('purgeNpmVersions', PurgeNpmVersions) {
603+
group = GroupNames.NPM_RUN
604+
description = "Given a package name via -P${PurgeNpmVersions.PACKAGE_NAME_PROP}=name (without the @labkey prefix) and a version list via -P${PurgeNpmVersions.VERSION_LIST_PROP}=fileName for npm package, " +
605+
"removes the versions specified from Artifactory. " +
606+
" Use -PdryRun to see what versions would be deleted without actually doing the deletion."
607+
}
606608
}

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ apacheDirectoryVersion=2.1.7
100100
apacheMinaVersion=2.2.5
101101

102102
# Usually matches the version specified as a Spring Boot dependency (see springBootVersion below)
103-
apacheTomcatVersion=11.0.18
103+
apacheTomcatVersion=11.0.21
104104

105105
# (mothership) -> json-path -> json-smart -> accessor-smart
106106
# (core) -> graalvm
@@ -172,7 +172,7 @@ googleProtocolBufVersion=3.25.8
172172
# "java.lang.NoSuchMethodError: 'void com.google.gson.internal.ConstructorConstructor.<init>(java.util.Map)'" errors
173173
gsonVersion=2.8.9
174174

175-
grpcVersion=1.79.0
175+
grpcVersion=1.80.0
176176

177177
guavaVersion=33.5.0-jre
178178

@@ -252,7 +252,7 @@ jxlVersion=2.6.3
252252

253253
kaptchaVersion=2.3
254254

255-
log4j2Version=2.25.3
255+
log4j2Version=2.25.4
256256

257257
lombokVersion=1.18.42
258258

@@ -308,7 +308,7 @@ slf4jLog4jApiVersion=2.0.17
308308
snappyJavaVersion=1.1.10.8
309309

310310
# Also, update apacheTomcatVersion above to match Spring Boot's Tomcat dependency version
311-
springBootVersion=4.0.4
311+
springBootVersion=4.0.5
312312
# This usually matches the Spring Framework version dictated by springBootVersion
313313
springVersion=7.0.6
314314
springAiVersion=2.0.0-M4

0 commit comments

Comments
 (0)