Skip to content

Commit 4011ec9

Browse files
committed
Library updates
1 parent c5a88cf commit 4011ec9

3 files changed

Lines changed: 12 additions & 11 deletions

File tree

gitb-testbed-service/src/main/java/com/gitb/tbs/config/SwaggerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class SwaggerConfig implements WebMvcConfigurer {
2626
public void addResourceHandlers(ResourceHandlerRegistry registry) {
2727
// Serve Swagger UI static resources - version is auto-detected
2828
registry.addResourceHandler("/gitb/swagger-ui/**")
29-
.addResourceLocations("classpath:/META-INF/resources/webjars/swagger-ui/5.32.8/");
29+
.addResourceLocations("classpath:/META-INF/resources/webjars/swagger-ui/5.32.11/");
3030
// The custom HTML page (classpath:/static/gitb/swagger-ui.html) is served by Spring Boot's
3131
// default static resource handler - no explicit registration needed (and an exact-pattern
3232
// handler mapped to a directory location here would 404 while also shadowing the default).

gitb-ui/build.sbt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ val jacksonAnnotationsVersion = "2.22"
88
val cxfVersion = "4.2.2"
99
val gitbCommonsVersion = "1.30.0-SNAPSHOT"
1010
val gitbTypesVersion = "1.30.0-SNAPSHOT"
11-
val bouncyCastleVersion = "1.84"
11+
val bouncyCastleVersion = "1.85"
1212
val commonsTextVersion = "1.15.0"
1313
val mySqlConnectorVersion = "9.7.0"
14-
val pac4jVersion = "6.5.4"
15-
val nettyVersion = "4.2.15.Final"
16-
val pdfBoxVersion = "3.0.7"
14+
val pac4jVersion = "6.5.5"
15+
val nettyVersion = "4.2.16.Final"
16+
val pdfBoxVersion = "3.0.8"
1717
val jaxbVersion = "4.0.9"
1818

1919
name := """GITB"""
@@ -75,10 +75,11 @@ libraryDependencies ++= Seq(
7575
"org.apache.cxf" % "cxf-rt-transports-http" % cxfVersion,
7676
"org.apache.cxf" % "cxf-rt-transports-http-jetty" % cxfVersion,
7777
// ---
78-
"org.apache.tika" % "tika-core" % "3.3.1",
78+
"org.apache.neethi" % "neethi" % "3.2.3",
79+
"org.apache.tika" % "tika-core" % "3.3.2",
7980
"org.webjars" % "jquery" % "4.0.0",
8081
"org.webjars" % "bootstrap" % "5.3.8",
81-
"org.webjars" % "swagger-ui" % "5.32.8",
82+
"org.webjars" % "swagger-ui" % "5.32.11",
8283
"jakarta.mail" % "jakarta.mail-api" % "2.1.5",
8384
"org.eclipse.angus" % "angus-mail" % "2.0.5",
8485
"org.glassfish.jaxb" % "jaxb-runtime" % jaxbVersion,

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<version.reflections>0.10.2</version.reflections>
4949
<version.commonsIo>2.22.0</version.commonsIo>
5050
<version.commonsLang3>3.20.0</version.commonsLang3>
51-
<version.tika>3.3.1</version.tika>
51+
<version.tika>3.3.2</version.tika>
5252
<!--
5353
Xerces versions to support the XML Schema v1.1 distribution (not published on Maven
5454
The version in the following sections must remain consistent with the latest Xerces
@@ -78,7 +78,7 @@
7878
<version.xmlUnit>2.12.0</version.xmlUnit>
7979
<version.jerseyClient>1.19.4</version.jerseyClient>
8080
<version.freeMarker>2.3.34</version.freeMarker>
81-
<version.openhtmltopdf>1.1.40</version.openhtmltopdf>
81+
<version.openhtmltopdf>1.1.65</version.openhtmltopdf>
8282
<version.org.jsoup>1.22.2</version.org.jsoup>
8383
<version.jena>6.1.0</version.jena>
8484
<!-- Ensure the libthrift version matches the one used within Jena. -->
@@ -89,8 +89,8 @@
8989
<version.jackson>3.2.1</version.jackson>
9090
<version.jackson2>2.22.1</version.jackson2> <!-- Used for libraries that have not upgraded to Jackson 3 (the package is different so no conflicts) -->
9191
<version.jacksonAnnotations>2.22</version.jacksonAnnotations>
92-
<version.pdfbox>3.0.7</version.pdfbox>
93-
<version.swaggerUi>5.32.8</version.swaggerUi> <!-- When upgrading, also update the version in class SwaggerConfig -->
92+
<version.pdfbox>3.0.8</version.pdfbox>
93+
<version.swaggerUi>5.32.11</version.swaggerUi> <!-- When upgrading, also update the version in class SwaggerConfig -->
9494
<version.owaspHtmlSanitizer>20260313.1</version.owaspHtmlSanitizer>
9595
<!-- Properties used for filtering replacements -->
9696
<timestamp>${maven.build.timestamp}</timestamp>

0 commit comments

Comments
 (0)