|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 15 | <maven.compiler.source>21</maven.compiler.source> |
16 | 16 | <maven.compiler.target>21</maven.compiler.target> |
17 | | - <tomcat.version>11.0.15</tomcat.version> |
| 17 | + <tomcat.version>11.0.18</tomcat.version> |
18 | 18 | <jena.version>5.6.0</jena.version> |
19 | 19 | <lib.version>4.0.1</lib.version> |
20 | 20 | <jersey.version>3.1.11</jersey.version> |
|
27 | 27 | <releases> |
28 | 28 | <enabled>true</enabled> |
29 | 29 | </releases> |
30 | | - |
31 | 30 | </repository> |
| 31 | + |
32 | 32 | <repository> |
33 | 33 | <id>apache-repo-snapshots</id> |
34 | 34 | <url>https://repository.apache.org/content/repositories/snapshots/</url> |
|
175 | 175 | <groupId>org.eclipse.jetty.orbit</groupId> |
176 | 176 | <artifactId>javax.servlet</artifactId> |
177 | 177 | </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> |
178 | 186 | </exclusions> |
179 | 187 | <scope>test</scope> |
180 | 188 | </dependency> |
181 | 189 |
|
| 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> |
182 | 225 | </dependencies> |
183 | 226 |
|
| 227 | + |
184 | 228 | <build> |
185 | 229 | <plugins> |
186 | 230 | <plugin> |
|
0 commit comments