Skip to content

Commit 8213f59

Browse files
authored
Merge pull request #43 from epimorphics/dependency-updates
Dependency updates
2 parents c3418d7 + 1401b93 commit 8213f59

2 files changed

Lines changed: 60 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project from 2026-03-11 onward will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [4.0.1-SNAPSHOT]
9+
10+
### Security
11+
12+
* Bump Tomcat 11.0.14 to 11.0.18
13+
* Update transitive dependencies org.apache.shiro:shiro-core and org.apache.shiro:shiro-web 2.0.5 to 2.1.0
14+
* Update transitive dependencies org.eclipse.jetty.ee10:jetty-ee10-servlet, org.eclipse.jetty.ee10:jetty-ee10-servlets and org.eclipse.jetty:jetty-security 12.1.1 to 12.1.7

pom.xml

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<maven.compiler.source>21</maven.compiler.source>
1616
<maven.compiler.target>21</maven.compiler.target>
17-
<tomcat.version>11.0.15</tomcat.version>
17+
<tomcat.version>11.0.18</tomcat.version>
1818
<jena.version>5.6.0</jena.version>
1919
<lib.version>4.0.1</lib.version>
2020
<jersey.version>3.1.11</jersey.version>
@@ -27,8 +27,8 @@
2727
<releases>
2828
<enabled>true</enabled>
2929
</releases>
30-
3130
</repository>
31+
3232
<repository>
3333
<id>apache-repo-snapshots</id>
3434
<url>https://repository.apache.org/content/repositories/snapshots/</url>
@@ -175,12 +175,56 @@
175175
<groupId>org.eclipse.jetty.orbit</groupId>
176176
<artifactId>javax.servlet</artifactId>
177177
</exclusion>
178+
<exclusion>
179+
<groupId>org.apache.shiro</groupId>
180+
<artifactId>shiro-core</artifactId>
181+
</exclusion>
182+
<exclusion>
183+
<groupId>org.apache.shiro</groupId>
184+
<artifactId>shiro-web</artifactId>
185+
</exclusion>
178186
</exclusions>
179187
<scope>test</scope>
180188
</dependency>
181189

190+
<!-- Override shiro-core in jena-fuseki-main -->
191+
<dependency>
192+
<groupId>org.apache.shiro</groupId>
193+
<artifactId>shiro-core</artifactId>
194+
<version>2.1.0</version>
195+
<scope>test</scope>
196+
</dependency>
197+
198+
<!-- Override shiro-web in jena-fuseki-main -->
199+
<dependency>
200+
<groupId>org.apache.shiro</groupId>
201+
<artifactId>shiro-web</artifactId>
202+
<version>2.1.0</version>
203+
<scope>test</scope>
204+
</dependency>
205+
206+
<!-- Override jetty dependencies in jena-fuseki-main -->
207+
<dependency>
208+
<groupId>org.eclipse.jetty.ee10</groupId>
209+
<artifactId>jetty-ee10-servlet</artifactId>
210+
<version>12.1.7</version>
211+
<scope>test</scope>
212+
</dependency>
213+
<dependency>
214+
<groupId>org.eclipse.jetty.ee10</groupId>
215+
<artifactId>jetty-ee10-servlets</artifactId>
216+
<version>12.1.7</version>
217+
<scope>test</scope>
218+
</dependency>
219+
<dependency>
220+
<groupId>org.eclipse.jetty</groupId>
221+
<artifactId>jetty-security</artifactId>
222+
<version>12.1.7</version>
223+
<scope>test</scope>
224+
</dependency>
182225
</dependencies>
183226

227+
184228
<build>
185229
<plugins>
186230
<plugin>

0 commit comments

Comments
 (0)