Skip to content

Commit

Permalink
catch up new xml namespaces in test files
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Jan 24, 2025
1 parent 191cd42 commit 63f7b62
Show file tree
Hide file tree
Showing 20 changed files with 120 additions and 139 deletions.
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,16 @@
<maven.source.excludeResources>true</maven.source.excludeResources>

<!-- Test versions. -->
<test.wildfly.version>33.0.1.Final</test.wildfly.version> <!-- https://mvnrepository.com/artifact/org.wildfly.bom/wildfly -->
<test.glassfish.version>7.0.17</test.glassfish.version> <!-- https://mvnrepository.com/artifact/org.glassfish.main.distributions/glassfish -->
<test.wildfly.version>33.0.2.Final</test.wildfly.version> <!-- https://mvnrepository.com/artifact/org.wildfly.bom/wildfly -->
<test.glassfish.version>7.0.21</test.glassfish.version> <!-- https://mvnrepository.com/artifact/org.glassfish.main.distributions/glassfish -->
<test.tomee.version>9.1.3</test.tomee.version> <!-- https://mvnrepository.com/artifact/org.apache.tomee/apache-tomee -->
<test.wildfly-eclipselink.version>5.0.0-B03</test.wildfly-eclipselink.version> <!-- https://mvnrepository.com/artifact/org.eclipse.persistence/eclipselink -->
<test.wildfly-eclipselink.version>5.0.0-B05</test.wildfly-eclipselink.version> <!-- https://mvnrepository.com/artifact/org.eclipse.persistence/eclipselink -->
<test.glassfish-hibernate.version>6.1.7.Final</test.glassfish-hibernate.version> <!-- https://mvnrepository.com/artifact/org.hibernate.orm/hibernate-core TODO: Hibernate 6.2.0 and newer somehow threw java.lang.ClassCircularityError: org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$Entry -->
<test.h2.version>2.3.232</test.h2.version> <!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
<test.mysql-driver.version>8.0.33</test.mysql-driver.version> <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<test.postgresql-driver.version>42.7.4</test.postgresql-driver.version> <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<test.omnifaces.version>4.5.1</test.omnifaces.version> <!-- https://mvnrepository.com/artifact/org.omnifaces/omnifaces -->
<test.primefaces.version>14.0.5</test.primefaces.version> <!-- https://mvnrepository.com/artifact/org.primefaces/primefaces -->
<test.postgresql-driver.version>42.7.5</test.postgresql-driver.version> <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<test.omnifaces.version>5.0-M2</test.omnifaces.version> <!-- https://mvnrepository.com/artifact/org.omnifaces/omnifaces -->
<test.primefaces.version>14.0.10</test.primefaces.version> <!-- https://mvnrepository.com/artifact/org.primefaces/primefaces -->
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<f:view transient="true">
<h:head>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with criteria</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with DTO</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with default orderBy</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with element collection</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with filter options</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with @ManyToOne</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with @OneToMany</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - lazy with @OneToOne</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - non-lazy</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<f:view transient="true">
<h:head>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - non-lazy with criteria</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - non-lazy with DTO</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - non-lazy with element collection</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - non-lazy with filter options</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - non-lazy with @ManyToOne</title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
-->
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:o="http://omnifaces.org/ui"
xmlns:p="http://primefaces.org/ui"
xmlns:op="http://omnifaces.org/optimusfaces"
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:ui="jakarta.faces.facelets"
xmlns:o="omnifaces"
xmlns:p="primefaces"
xmlns:op="optimusfaces"
>
<h:head>
<title>OptimusFacesIT - non-lazy with @OneToMany</title>
Expand Down
Loading

0 comments on commit 63f7b62

Please sign in to comment.