Skip to content

Commit 9fa2fe0

Browse files
committed
GH-1763: Use Omnifaces v 4.x.x for Jakarta EE 9+
1 parent a3983b2 commit 9fa2fe0

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

jena-fuseki2/jena-fuseki-webapp/pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,24 @@
8383
<groupId>org.apache.shiro</groupId>
8484
<artifactId>shiro-config-core</artifactId>
8585
</dependency>
86-
86+
87+
<!-- See https://shiro.apache.org/jakarta-ee.html -->
8788
<dependency>
8889
<groupId>org.apache.shiro</groupId>
8990
<artifactId>shiro-jakarta-ee</artifactId>
9091
<classifier>jakarta</classifier>
92+
<exclusions>
93+
<exclusion>
94+
<groupId>org.omnifaces</groupId>
95+
<artifactId>omnifaces</artifactId>
96+
</exclusion>
97+
</exclusions>
98+
</dependency>
99+
<!-- Include omnifaces -->
100+
<dependency>
101+
<groupId>org.omnifaces</groupId>
102+
<artifactId>omnifaces</artifactId>
103+
<version>${ver.omnifaces}</version>
91104
</dependency>
92105

93106
<!-- frontend assets (HTML, JS, CSS, images, etc.) -->

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,12 @@
7070
<ver.jetty>12.0.16</ver.jetty>
7171
<ver.jakarta-servlet>6.1.0</ver.jakarta-servlet>
7272

73+
<!--
74+
These two go together
75+
See jena-fuseki-webapp and https://shiro.apache.org/jakarta-ee.html
76+
-->
7377
<ver.shiro>2.0.2</ver.shiro>
78+
<ver.omnifaces>4.6.1</ver.omnifaces>
7479

7580
<ver.protobuf>4.29.3</ver.protobuf>
7681
<ver.libthrift>0.21.0</ver.libthrift>

0 commit comments

Comments
 (0)