Skip to content

Commit 4cde184

Browse files
committed
fixing classpath issue in the rdf4j-server webapp
1 parent 4136566 commit 4cde184

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

tools/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@
6666
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
6767
<version>${jakarta.jstl.version}</version>
6868
</dependency>
69+
<dependency>
70+
<groupId>org.glassfish.web</groupId>
71+
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
72+
<version>${jakarta.jstl.version}</version>
73+
</dependency>
6974
<dependency>
7075
<groupId>org.ebaysf.web</groupId>
7176
<artifactId>cors-filter</artifactId>

tools/server/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@
3939
<dependency>
4040
<groupId>jakarta.servlet.jsp.jstl</groupId>
4141
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
42-
<scope>provided</scope>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.glassfish.web</groupId>
45+
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
46+
<scope>runtime</scope>
4347
</dependency>
4448
<dependency>
4549
<groupId>jakarta.servlet</groupId>
-405 KB
Binary file not shown.

tools/server/src/main/webapp/WEB-INF/web.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@
3333
<url-pattern>/*</url-pattern>
3434
</filter-mapping>
3535
-->
36-
<!-- <filter-mapping>
37-
<filter-name>CompressingFilter</filter-name>
38-
<url-pattern>/*</url-pattern>
39-
</filter-mapping>-->
36+
4037
<filter-mapping>
4138
<filter-name>UrlRewriteFilter</filter-name>
4239
<url-pattern>/</url-pattern>

0 commit comments

Comments
 (0)